Skip to content

Commit

Permalink
rebase: default to using the builtin rebase
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
prertik authored and gitster committed Oct 11, 2018
1 parent bc24382 commit 5541bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/rebase.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static int use_builtin_rebase(void)
cp.git_cmd = 1;
if (capture_command(&cp, &out, 6)) {
strbuf_release(&out);
return 0;
return 1;
}

strbuf_trim(&out);
Expand Down

0 comments on commit 5541bd5

Please sign in to comment.