måndagen den 11 februari 2008 skrev Johan Herland: > When using the '-w $cvsdir' option to cvsexportcommit, it will chdir into > $cvsdir before executing several other git commands. If $GIT_DIR is set to > a relative path (e.g. '.'), the git commands executed by cvsexportcommit > will naturally fail with "fatal: Not a git repository". [...] > die "Need at least one commit identifier!" unless @ARGV; > > if ($opt_w) { > + # Remember where GIT_DIR is before changing to CVS checkout > unless ($ENV{GIT_DIR}) { > - # Remember where our GIT_DIR is before changing to CVS checkout > + # Oops no GIT_DIR set. Figure out for ourselves That's not an "Oops". It's perfectly normal not to have GIT_DIR set. > my $gd =`git-rev-parse --git-dir`; > chomp($gd); > - if ($gd eq '.git') { > - my $wd = `pwd`;Kopia > - chomp($wd); > - $gd = $wd."/.git" ; > - } > + $ENV{GIT_DIR} = $gd; > + } > + unless ($ENV{GIT_DIR} =~ m[^/]) { > + # GIT_DIR is relative. Prepend $PWD Hmm. C:/foo? You should probably use rel2abs in the File::Spec module. -- robin - 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