X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=blobdiff_plain;f=gitremotes;h=5cafad1b8dcb550c694567b7815978a7861fc6fe;hp=f596c650f56f1a96b2b53ec5aeb7ad85f818b6d3;hb=cf8a46b761ab4131fa08aade85b840bbfd4d2ba1;hpb=958e83230d36bbf995329981a659ee69717a0451 diff --git a/gitremotes b/gitremotes index f596c650f..5cafad1b8 100755 --- a/gitremotes +++ b/gitremotes @@ -16,7 +16,10 @@ while () { my ($oldurl)=$info=~/URL: (.*)/m; if ($oldurl ne $url) { system("git remote rm $remote 2>/dev/null"); - system("git", "remote", "add", "-f", $remote, $url) + system("git", "remote", "add", $remote, $url); + system("git", "config", "remote.$remote.tagopt", + "--no-tags"); + system("git", "fetch", $remote); } } }