X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/8e92468eae9ac0ab8161a0c71ff6c6a0a8aef07a..ff0cb2a7bf0756bb232cd73fc8bb6616737448c1:/gitremotes diff --git a/gitremotes b/gitremotes index 7b9484dd1..bcee005c3 100755 --- a/gitremotes +++ b/gitremotes @@ -6,7 +6,7 @@ my $error=0; open (IN, "doc/git.mdwn") || die "doc/git.mdwn: $!"; while () { - if (/^\*\s+\[?\[?(\w+)\]?\]?\s+`([^>]+)`/) { + if (/^\*\s+\[?\[?(\w+)(?:\|\w+)?\]?\]?\s+`([^>]+)`/) { # note that the remote name has to be a simple word (\w) # for security/sanity reasons my $remote=$1; @@ -20,7 +20,7 @@ while () { $error |= system("git", "remote", "add", "-f", $remote, $url); } else { - $error |= system("git", "fetch", $remote); + $error |= system("git", "fetch", "--no-tag", $remote); } } }