X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/958e83230d36bbf995329981a659ee69717a0451..61dfde7c07ee3695c251b0f593dffd0307a15057:/gitremotes 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); } } }