From: Chris 'BinGOs' Williams Date: Fri, 8 May 2009 10:49:40 +0000 (+0200) Subject: git checkout in add-package.pl, not git co X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1e3c652eb4151e62b641752816e9f1039df3703a;p=p5sagit%2Fp5-mst-13.2.git git checkout in add-package.pl, not git co --- diff --git a/Porting/add-package.pl b/Porting/add-package.pl index 54a4f03..c8fe807 100644 --- a/Porting/add-package.pl +++ b/Porting/add-package.pl @@ -55,7 +55,7 @@ else { unless ( $status =~ /nothing to commit/ims ) { die "\nWorking directory not clean. Stopping.\n"; } - system( "git co -b $BranchName blead" ) + system( "git checkout -b $BranchName blead" ) and die "Could not create branch '$BranchName': $?"; print "done\n" if $Verbose;