diff options
author | 2018-05-20 20:40:00 +0200 | |
---|---|---|
committer | 2018-05-21 13:23:14 +0900 | |
commit | 3c7777672bf9bc9ac2ddb422633b39af4faa1682 (patch) | |
tree | 13710eec966e2da6bde01cde29e5412bcb808289 /Documentation | |
parent | completion: implement and use --list-cmds=main,others (diff) | |
download | tgif-3c7777672bf9bc9ac2ddb422633b39af4faa1682.tar.xz |
git: support --list-cmds=list-<category>
This allows us to select any group of commands by a category defined
in command-list.txt. This is an internal/hidden option so we don't
have to be picky about the category name or worried about exposing too
much.
This will be used later by git-completion.bash to retrieve certain
command groups.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt index c01477ab5e..c423810eac 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -168,7 +168,8 @@ foo.bar= ...`) sets `foo.bar` to the empty string which `git config option and may change or be removed in the future. Supported groups are: builtins, parseopt (builtin commands that use parse-options), main (all commands in libexec directory), - others (all other commands in `$PATH` that have git- prefix). + others (all other commands in `$PATH` that have git- prefix), + list-<category> (see categories in command-list.txt) GIT COMMANDS ------------ |