summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-10-19 04:34:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-10-19 04:34:05 (GMT)
commit54e564e1d626fbcfb5eabddaccc9daf0aae6a9be (patch)
tree3c025041538bfc29e3c1fd03837bba2a6bec12c6 /t
parent0d4f473a985e5b5f15ae88fd8dda695a694b9955 (diff)
parent26c7d0678324d99b56d3044acfdfab57ee670af4 (diff)
downloadgit-54e564e1d626fbcfb5eabddaccc9daf0aae6a9be.zip
git-54e564e1d626fbcfb5eabddaccc9daf0aae6a9be.tar.gz
git-54e564e1d626fbcfb5eabddaccc9daf0aae6a9be.tar.bz2
Merge branch 'nd/help-commands-verbose-by-default'
"git help -a" and "git help -av" give different pieces of information, and generally the "verbose" version is more friendly to the new users. "git help -a" by default now uses the more verbose output (with "--no-verbose", you can go back to the original). Also "git help -av" now lists aliases and external commands, which it did not used to. * nd/help-commands-verbose-by-default: help -a: improve and make --verbose default
Diffstat (limited to 't')
-rwxr-xr-xt/t0012-help.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0012-help.sh b/t/t0012-help.sh
index bc27df7..e8ef730 100755
--- a/t/t0012-help.sh
+++ b/t/t0012-help.sh
@@ -29,9 +29,9 @@ test_expect_success "setup" '
# to verify
test_expect_success 'basic help commands' '
git help >/dev/null &&
- git help -a >/dev/null &&
+ git help -a --no-verbose >/dev/null &&
git help -g >/dev/null &&
- git help -av >/dev/null
+ git help -a >/dev/null
'
test_expect_success "works for commands and guides by default" '