diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-08-27 20:16:57 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-08-27 20:17:38 -0400 |
commit | d4b4b3d988c0b7bfc74876c3b55b787baffc0dcf (patch) | |
tree | df65603ed5238f7f93cbcec94a02c745aacf4ed2 /gitremotes | |
parent | 0c1a71896d792e3fb2fe6624a2dc9fdac30e1b80 (diff) | |
download | ikiwiki-d4b4b3d988c0b7bfc74876c3b55b787baffc0dcf.tar ikiwiki-d4b4b3d988c0b7bfc74876c3b55b787baffc0dcf.tar.gz |
avoid fetching tags from random remotes
git makes it too easy to get crap tags into origin
Diffstat (limited to 'gitremotes')
-rwxr-xr-x | gitremotes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitremotes b/gitremotes index 91bf2fe84..bcee005c3 100755 --- a/gitremotes +++ b/gitremotes @@ -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); } } } |