From d4b4b3d988c0b7bfc74876c3b55b787baffc0dcf Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 27 Aug 2009 20:16:57 -0400 Subject: [PATCH] avoid fetching tags from random remotes git makes it too easy to get crap tags into origin --- gitremotes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } } -- 2.32.0.93.g670b81a890