diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-07 13:25:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-07 13:25:56 -0400 |
commit | 911184432d1ccbeb1bcee224efba99f558ba74d5 (patch) | |
tree | 1a4caa0668541d5ebceeb65583cb85c124c363a3 /gitremotes | |
parent | 8cd216d748961a18d373b8fea6e4346c0c372f6e (diff) | |
parent | b01a2274c3f96541b8b48f9ebb883ee8b7451fa3 (diff) |
Merge branch 'master' into commentreorg
Diffstat (limited to 'gitremotes')
-rwxr-xr-x | gitremotes | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gitremotes b/gitremotes index f596c650f..6c03011a8 100755 --- a/gitremotes +++ b/gitremotes @@ -16,7 +16,9 @@ while (<IN>) { my ($oldurl)=$info=~/URL: (.*)/m; if ($oldurl ne $url) { system("git remote rm $remote 2>/dev/null"); - system("git", "remote", "add", "-f", $remote, $url) + system("git", "remote", "add", "-f", $remote, $url); + system("git", "config", "remote.$remote.tagopt", + "--no-tags"); } } } |