From 34c99da2a4324e9b4a9d3f59e8cd7114090bd22a Mon Sep 17 00:00:00 2001 From: Joe English Date: Fri, 6 Jan 2006 12:52:27 -0800 Subject: Substitute "/" with $opt_s in tag names as well as branch names In 'git cvsimport' changes "/" to "-" (or $opt_s) in branch names, but not in tag names, which is inconsistent. Signed-off-by: Junio C Hamano diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 08a890c..8619e7d 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -649,6 +649,7 @@ my $commit = sub { my($xtag) = $tag; $xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY ** $xtag =~ tr/_/\./ if ( $opt_u ); + $xtag =~ s/[\/]/$opt_s/g; my $pid = open2($in, $out, 'git-mktag'); print $out "object $cid\n". -- cgit v0.10.2-6-g49f6