Browse Source

Merge branch 'maint'

* maint:
  git-cvsimport: fix merging with remote parent branch
  gitweb: Fix bug in href(..., -replay=>1) when using 'pathinfo' form
maint
Junio C Hamano 17 years ago
parent
commit
b75aaa546e
  1. 2
      git-cvsimport.perl

2
git-cvsimport.perl

@ -735,7 +735,7 @@ sub commit { @@ -735,7 +735,7 @@ sub commit {
next unless $logmsg =~ $rx && $1;
my $mparent = $1 eq 'HEAD' ? $opt_o : $1;
if (my $sha1 = get_headref("$remote/$mparent")) {
push @commit_args, '-p', $mparent;
push @commit_args, '-p', "$remote/$mparent";
print "Merge parent branch: $mparent\n" if $opt_v;
}
}

Loading…
Cancel
Save