summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-01-23 13:16:36 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-01-23 13:16:36 -0800
commita713fb59e701065efefb82cc862a889d96d6a9c6 (patch)
tree861157d070250537e89def246feed35cb294e446
parentMerge branch 'nd/ita-wt-renames-in-status' (diff)
parentgit-svn: fix svn.pushmergeinfo handling of svn+ssh usernames. (diff)
downloadtgif-a713fb59e701065efefb82cc862a889d96d6a9c6.tar.xz
Merge branch 'jm/svn-pushmergeinfo-fix'
"git svn dcommit" did not take into account the fact that a svn+ssh:// URL with a username@ (typically used for pushing) refers to the same SVN repository without the username@ and failed when svn.pushmergeinfo option is set. * jm/svn-pushmergeinfo-fix: git-svn: fix svn.pushmergeinfo handling of svn+ssh usernames.
-rwxr-xr-xgit-svn.perl1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-svn.perl b/git-svn.perl
index aa242d4f4f..76a75d0b3d 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -931,6 +931,7 @@ sub cmd_dcommit {
# information from different SVN repos, and paths
# which are not underneath this repository root.
my $rooturl = $gs->repos_root;
+ Git::SVN::remove_username($rooturl);
foreach my $d (@$linear_refs) {
my %parentshash;
read_commit_parents(\%parentshash, $d);