Skip to content

Commit 791d1af

Browse files
committed
Merge 'pk/rebase-in-c-6-final'
This final patch flips the switch and makes the builtin rebase the default. The old, Unix shell scripted version can still be called via git -c rebase.useBuiltin=false rebase [...] Signed-off-by: Johannes Schindelin <[email protected]>
2 parents 3f55607 + 817e25c commit 791d1af

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)