From: Sasha Khapyorsky <sashak@voltaire.com>
To: Daniel Drake <ddrake@brontes3d.com>
Cc: git@vger.kernel.org
Subject: Re: git-svnimport breakage as of git-1.4.4
Date: Fri, 8 Dec 2006 22:32:30 +0200 [thread overview]
Message-ID: <20061208203230.GA9193@sashak.voltaire.com> (raw)
In-Reply-To: <1165505193.26874.13.camel@systems03.lan.brontes3d.com>
Hi,
On 10:26 Thu 07 Dec , Daniel Drake wrote:
>
> git-svnimport broken between git-1.4.3.5 and git-1.4.4
>
> I have found that commit 83936a29e275bc0c04f60d3333e4951a9e16b1fc is the
> cause of this.
>
> I am using git-svnimport to work with a repo with this layout:
>
> https://server/repo/trunk
> https://server/repo/tags/x.y.z
> https://server/repo/branches/somebranch
>
> Starting a fresh import:
>
> # git-svnimport -v -i -C repo -r https://server repo
Is this 'server' public? Can I rerun this git-svnimport?
If not, please try the patch:
diff --git a/git-svnimport.perl b/git-svnimport.perl
index cbaa8ab..b9de446 100755
--- a/git-svnimport.perl
+++ b/git-svnimport.perl
@@ -210,6 +210,12 @@ $svn .= "/$svn_dir" if defined $svn_dir;
my $svn2 = SVNconn->new($svn);
$svn = SVNconn->new($svn);
+if($svn_dir) {
+ $svn_dir =~ s#/*$#/#;
+} else {
+ $svn_dir = "";
+}
+
my $lwp_ua;
if($opt_d or $opt_D) {
$svn_url = URI->new($svn_url)->canonical;
@@ -906,7 +912,7 @@ sub commit_all {
my ($changed_paths, $revision, $author, $date, $message, $pool) = @_;
my %p;
while(my($path,$action) = each %$changed_paths) {
- $p{$path} = [ $action->action,$action->copyfrom_path, $action->copyfrom_rev, $path ];
+ $p{$path} = [ $action->action,$svn_dir$action->copyfrom_path, $action->copyfrom_rev, $svn_dir$path ];
}
$changed_paths = \%p;
Thanks,
next prev parent reply other threads:[~2006-12-08 20:24 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-07 15:26 git-svnimport breakage as of git-1.4.4 Daniel Drake
2006-12-08 20:32 ` Sasha Khapyorsky [this message]
2006-12-10 3:49 ` Dongsheng Song
2006-12-10 11:47 ` Sasha Khapyorsky
2006-12-11 20:00 ` Dongsheng Song
2006-12-11 20:50 ` Sasha Khapyorsky
2006-12-11 21:01 ` Dongsheng Song
2006-12-14 2:25 ` Sasha Khapyorsky
2006-12-11 14:27 ` Daniel Drake
2006-12-11 20:49 ` Sasha Khapyorsky
2006-12-11 21:03 ` Daniel Drake
2006-12-11 22:03 ` Sasha Khapyorsky
2006-12-13 16:28 ` Daniel Drake
2006-12-14 2:21 ` Sasha Khapyorsky
2006-12-14 21:05 ` Daniel Drake
2006-12-14 21:20 ` Sasha Khapyorsky
2006-12-14 21:32 ` Junio C Hamano
2006-12-14 21:43 ` Sasha Khapyorsky
2007-01-07 0:22 ` [PATCH] git-svnimport: clean svn path when accessing SVN repo Sasha Khapyorsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061208203230.GA9193@sashak.voltaire.com \
--to=sashak@voltaire.com \
--cc=ddrake@brontes3d.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).