Merge remote branch 'smcv/ready/no-tags'

master
Joey Hess 2010-05-09 12:56:07 -04:00
commit 7f894a025d
1 changed files with 2 additions and 1 deletions

View File

@ -16,9 +16,10 @@ while (<IN>) {
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);
}
}
}