On Thu, Oct 04, 2007 at 04:29:04PM +0100, Johannes Schindelin wrote: > Cc'ed Frank, who is de-facto maintainer (according to shortlog) > and Martin, who started it all IIRC. > > diff --git a/git-cvsserver.perl b/git-cvsserver.perl > index 13dbd27..869690c 100755 > --- a/git-cvsserver.perl > +++ b/git-cvsserver.perl > @@ -770,6 +770,14 @@ sub req_co > > $log->debug("req_co : " . ( defined($data) ? $data : "[NULL]" ) ); > > + if( system("git", "rev-parse", "--verify", "refs/heads/$module" ) != 0 ) > + { > + $log->warn("Checkout failed: $module is not a branch"); > + print "error 1 Checkout failed: $module is not a branch\n"; > + chdir "/"; > + exit; > + } > + > $log->info("Checking out module '$module' ($state->{CVSROOT}) to '$checkout_path'"); > > $ENV{GIT_DIR} = $state->{CVSROOT} . "/"; Looks good, haven't tested it yet, though. Care to add a testcase or should I take care of that? Gruesse, -- Frank Lichtenheld <frank@xxxxxxxxxxxxxx> www: http://www.djpig.de/ - 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