Skip to content

Commit 8336afa

Browse files
author
Junio C Hamano
committed
rerere: fix breakage of resolving.
commit e2b7008 botched the RCS merge to git-merge-file conversion. There is no command called "git merge-file" (yes, we are using safer variant of Perl's system(3)). Signed-off-by: Junio C Hamano <[email protected]>
1 parent 910c00c commit 8336afa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-rerere.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ sub find_conflict {
154154
sub merge {
155155
my ($name, $path) = @_;
156156
record_preimage($path, "$rr_dir/$name/thisimage");
157-
unless (system('git merge-file', map { "$rr_dir/$name/${_}image" }
157+
unless (system('git', 'merge-file', map { "$rr_dir/$name/${_}image" }
158158
qw(this pre post))) {
159159
my $in;
160160
open $in, "<$rr_dir/$name/thisimage" or

0 commit comments

Comments
 (0)