From: Joey Hess Date: Fri, 28 Aug 2009 00:16:57 +0000 (-0400) Subject: avoid fetching tags from random remotes X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/d4b4b3d988c0b7bfc74876c3b55b787baffc0dcf avoid fetching tags from random remotes git makes it too easy to get crap tags into origin --- diff --git a/gitremotes b/gitremotes index 91bf2fe84..bcee005c3 100755 --- a/gitremotes +++ b/gitremotes @@ -20,7 +20,7 @@ while () { $error |= system("git", "remote", "add", "-f", $remote, $url); } else { - $error |= system("git", "fetch", $remote); + $error |= system("git", "fetch", "--no-tag", $remote); } } }