Skip to content
Snippets Groups Projects
Commit 5541bd5b authored by Pratik Karki's avatar Pratik Karki Committed by Junio C Hamano
Browse files

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: default avatarPratik Karki <predatoramigo@gmail.com>
Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
parent bc24382c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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);
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment