diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-12-10 23:35:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-12-10 23:35:03 +0100 |
commit | 23c83fc47315d28dd2185618ecccaf403e2dd6a9 (patch) | |
tree | c0245754d7b39c535dee9c4955c162253ad03af2 /Documentation/git-help.txt | |
parent | Merge branch 'gc/remote-with-fewer-static-global-variables' (diff) | |
parent | init doc: --shared=0xxx does not give umask but perm bits (diff) | |
download | git-23c83fc47315d28dd2185618ecccaf403e2dd6a9.tar.xz git-23c83fc47315d28dd2185618ecccaf403e2dd6a9.zip |
Merge branch 'ja/doc-cleanup'
Doc update.
* ja/doc-cleanup:
init doc: --shared=0xxx does not give umask but perm bits
doc: git-init: clarify file modes in octal.
doc: git-http-push: describe the refs as pattern pairs
doc: uniformize <URL> placeholders' case
doc: use three dots for indicating repetition instead of star
doc: git-ls-files: express options as optional alternatives
doc: use only hyphens as word separators in placeholders
doc: express grammar placeholders between angle brackets
doc: split placeholders as individual tokens
doc: fix git credential synopsis
Diffstat (limited to 'Documentation/git-help.txt')
-rw-r--r-- | Documentation/git-help.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt index 96d5f598b4..44ea63cc6d 100644 --- a/Documentation/git-help.txt +++ b/Documentation/git-help.txt @@ -9,14 +9,14 @@ SYNOPSIS -------- [verse] 'git help' [-a|--all [--[no-]verbose]] - [[-i|--info] [-m|--man] [-w|--web]] [COMMAND|GUIDE] + [[-i|--info] [-m|--man] [-w|--web]] [<command>|<guide>] 'git help' [-g|--guides] 'git help' [-c|--config] DESCRIPTION ----------- -With no options and no COMMAND or GUIDE given, the synopsis of the 'git' +With no options and no '<command>' or '<guide>' given, the synopsis of the 'git' command and a list of the most commonly used Git commands are printed on the standard output. @@ -33,7 +33,7 @@ variables. If an alias is given, git shows the definition of the alias on standard output. To get the manual page for the aliased command, use -`git COMMAND --help`. +`git <command> --help`. Note that `git --help ...` is identical to `git help ...` because the former is internally converted into the latter. |