Skip to content

Commit 6582824

Browse files
prertikgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent fab49f6 commit 6582824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/rebase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static int use_builtin_rebase(void)
5454
cp.git_cmd = 1;
5555
if (capture_command(&cp, &out, 6)) {
5656
strbuf_release(&out);
57-
return 0;
57+
return 1;
5858
}
5959

6060
strbuf_trim(&out);

0 commit comments

Comments
 (0)