summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorLibravatar Martin Ågren <martin.agren@gmail.com>2017-08-02 21:40:54 +0200
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-08-03 11:08:11 -0700
commitff1e72483f416ecb58737205163031f54c24e754 (patch)
treefcb549fb670cde54e20929749012ac52b1a691a1 /builtin
parenttag: respect `pager.tag` in list-mode only (diff)
downloadtgif-ff1e72483f416ecb58737205163031f54c24e754.tar.xz
tag: change default of `pager.tag` to "on"
The previous patch taught `git tag` to only respect `pager.tag` in list-mode. That patch left the default value of `pager.tag` at "off". After that patch, it makes sense to let the default value be "on" instead, since it will help with listing many tags, but will not hurt users of `git tag -a` as it would have before. Make that change. Update documentation and tests. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/tag.c b/builtin/tag.c
index 5ad1af2524..ea83df5e13 100644
--- a/builtin/tag.c
+++ b/builtin/tag.c
@@ -462,7 +462,7 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
}
if (cmdmode == 'l')
- setup_auto_pager("tag", 0);
+ setup_auto_pager("tag", 1);
if ((create_tag_object || force) && (cmdmode != 0))
usage_with_options(git_tag_usage, options);