Skip to content

Commit a2b43c9

Browse files
committed
fixup! stash/rebase: default to the non-builtin versions
In Git for Windows v2.20.0, we will want to default to the built-in versions. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 598c370 commit a2b43c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builtin/rebase.c

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

6161
strbuf_trim(&out);

builtin/stash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ static int use_builtin_stash(void)
15291529
cp.git_cmd = 1;
15301530
if (capture_command(&cp, &out, 6)) {
15311531
strbuf_release(&out);
1532-
return 0;
1532+
return 1;
15331533
}
15341534

15351535
strbuf_trim(&out);

0 commit comments

Comments
 (0)