avoid fetching tags from random remotes

git makes it too easy to get crap tags into origin
master
Joey Hess 2009-08-27 20:16:57 -04:00
parent 0c1a71896d
commit d4b4b3d988
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ while (<IN>) {
$error |= system("git", "remote", "add", "-f", $remote, $url);
}
else {
$error |= system("git", "fetch", $remote);
$error |= system("git", "fetch", "--no-tag", $remote);
}
}
}