--stable has been the default in 'next' for a few weeks with no ill effects. Change the default to that so that users don't have to remember to enable it.
Signed-off-by: Michael S. Tsirkin <m...@redhat.com> --- builtin/patch-id.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/patch-id.c b/builtin/patch-id.c index 037cf2f..0b267af 100644 --- a/builtin/patch-id.c +++ b/builtin/patch-id.c @@ -198,9 +198,9 @@ int cmd_patch_id(int argc, const char **argv, const char *prefix) git_config(git_patch_id_config, &stable); - /* If nothing is set, default to unstable. */ + /* If nothing is set, default to stable. */ if (stable < 0) - stable = 0; + stable = 1; if (argc == 2 && !strcmp(argv[1], "--stable")) stable = 1; -- MST -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html