From: Joey Hess Date: Fri, 28 Aug 2009 00:16:57 +0000 (-0400) Subject: avoid fetching tags from random remotes X-Git-Tag: 3.1415926~39 X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=commitdiff_plain;h=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); } } }