fetch: allow command line --tags to override config
authorDaniel Johnson <computerdruid@gmail.com>
Wed, 11 Aug 2010 22:57:20 +0000 (18:57 -0400)
committerJunio C Hamano <gitster@pobox.com>
Sun, 15 Aug 2010 02:24:23 +0000 (19:24 -0700)
Originally, if remote.<name>.tagopt was set, the --tags and option would
have no effect when given to git fetch. So if
tagopt="--no-tags"

git fetch --tags

would not actually fetch tags.

This patch changes this behavior to only follow what is written in the
config if there is no option passed by the command line.

Signed-off-by: Daniel Johnson <ComputerDruid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found