aboutsummaryrefslogtreecommitdiff
path: root/gitremotes
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-08-27 20:16:57 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-08-27 20:17:38 -0400
commitd4b4b3d988c0b7bfc74876c3b55b787baffc0dcf (patch)
treedf65603ed5238f7f93cbcec94a02c745aacf4ed2 /gitremotes
parent0c1a71896d792e3fb2fe6624a2dc9fdac30e1b80 (diff)
downloadikiwiki-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-xgitremotes2
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);
}
}
}