rebase: default to using the builtin rebase

Now that the builtin rebase is feature-complete, we should use it by default. Let's keep the legacy scripted version around for the time being; Once the builtin rebase is well-tested enough, we can remove `git-legacy-rebase.sh`. Signed-off-by: Pratik Karki <predatoramigo@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Pratik Karki committed Aug 8, 2018 at 21:38 UTC 5541bd5b8f799ab2ae3901e38704d056b455d6ad
1 file changed +1 -1
builtin/rebase.c
+1 -1
@@ -54,7 +54,7 @@ static int use_builtin_rebase(void)
54 cp.git_cmd = 1;
55 if (capture_command(&cp, &out, 6)) {
56 strbuf_release(&out);
57 - return 0;
57 + return 1;
58 }
59
60 strbuf_trim(&out);