зеркало из https://github.com/microsoft/git.git
Make git-cvsimport remove ['s from tags, as bad_ref_char doesn't allow them.
Signed-off-by: Paul Oliver <puzza007@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
b27a23e35d
Коммит
509792b94f
|
@ -780,6 +780,7 @@ sub commit {
|
|||
$xtag =~ s/\s+\*\*.*$//; # Remove stuff like ** INVALID ** and ** FUNKY **
|
||||
$xtag =~ tr/_/\./ if ( $opt_u );
|
||||
$xtag =~ s/[\/]/$opt_s/g;
|
||||
$xtag =~ s/\[//g;
|
||||
|
||||
system('git-tag', '-f', $xtag, $cid) == 0
|
||||
or die "Cannot create tag $xtag: $!\n";
|
||||
|
|
Загрузка…
Ссылка в новой задаче