1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-01 14:57:52 +01:00

Merge branch 'pk/rebase-in-c-6-final'

The final step of rewriting "rebase -i" in C.

* pk/rebase-in-c-6-final:
  rebase: default to using the builtin rebase
This commit is contained in:
Junio C Hamano 2018-11-02 11:04:56 +09:00
commit ee5e90434e

View file

@ -55,7 +55,7 @@ static int use_builtin_rebase(void)
cp.git_cmd = 1; cp.git_cmd = 1;
if (capture_command(&cp, &out, 6)) { if (capture_command(&cp, &out, 6)) {
strbuf_release(&out); strbuf_release(&out);
return 0; return 1;
} }
strbuf_trim(&out); strbuf_trim(&out);