On Tue, Jan 13, 2009 at 4:34 PM, Vladimir Pouzanov <farcaller@xxxxxxxxx> wrote: > Jay Soffian <jaysoffian <at> gmail.com> writes: >> Perhaps this will help in tracking down the problem. > > $ git svn clone http://qsb-mac.googlecode.com/svn/trunk qsb-mac > Initialized empty Git repository in /Users/farcaller/temp/qsb-mac/.git/ > r1 = 810fe584c48b884460b5403a28bc61d872452b93 (git-svn) > Temp file with moniker 'svn_delta' already in use at /opt/local/lib/perl5/ > site_perl/5.8.8/Git.pm line 1011. One more thing to try. Edit your Git.pm and make the top of _temp_cache() look like the following: sub _temp_cache { my ($self, $name) = _maybe_self(@_); use Carp qw(longmess); warn longmess() if $name eq "svn_delta"; So you're adding the "use Carp..." and "warn..." lines. Then try the import again. That should at least show why the svn_delta temp file is being acquired twice. (Yes, this is the printf school of debugging...) j. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html