From: Andreas Ericsson Date: Fri, 25 Nov 2005 01:37:09 +0000 (+0100) Subject: cvsimport: Don't let local settings hinder cvs user-migration. X-Git-Tag: v0.99.9k^2~8 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=2c52a42dd720ed3cf1eadbc4a4e92be4cdf52f1d;p=git.git cvsimport: Don't let local settings hinder cvs user-migration. Avoid this by passing "--norc" to cvsps. Signed-off-by: Andreas Ericsson Signed-off-by: Junio C Hamano --- diff --git a/git-cvsimport.perl b/git-cvsimport.perl index efe19343..08a890c2 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -502,7 +502,7 @@ unless($pid) { if ($opt_P) { exec("cat", $opt_P); } else { - exec("cvsps",@opt,"-u","-A",'--root',$opt_d,$cvs_tree); + exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree); die "Could not start cvsps: $!\n"; } }