remotes.not-origin.tagopt
commit24424fc2f7cd7b3875fe6863587f47c043ac449d
authorJunio C Hamano <junkio@cox.net>
Thu, 15 Feb 2007 09:46:27 +0000 (15 01:46 -0800)
committerJunio C Hamano <junkio@cox.net>
Thu, 15 Feb 2007 09:52:14 +0000 (15 01:52 -0800)
treec5b48642e2e399a7361e6314fcde371e6c95f828
parent437b1b20df4b356c9342dac8d38849f24ef44f27
remotes.not-origin.tagopt

With a configuration entry like this:

[remote "alt-git"]
         url = git://repo.or.cz/alt.git/git/
                fetch = +refs/heads/*:refs/remotes/alt-git/*
                tagopt = --no-tags

you do not have to say "git pull --no-tags alt-git".  Just
saying "git pull alt-git" would suffice.

Obviously, if you want to get the tag from such an alternate
remote in a separate namespace, you could also do something like:

[remote "alt-git"]
         url = git://repo.or.cz/alt.git/git/
                fetch = +refs/heads/*:refs/remotes/alt-git/*
                fetch = +refs/tags/*:refs/remote-tags/alt-git/*
                tagopt = --no-tags

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-fetch.sh