From: Nguyễn Thái Ngọc Duy Date: Sat, 27 Oct 2018 06:22:50 +0000 (+0200) Subject: config.txt: move completion.* to a separate file X-Git-Tag: v2.20.0-rc0~59^2~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b4b7305d376d598892b4dbb9e699109f9dda1b9;p=thirdparty%2Fgit.git config.txt: move completion.* to a separate file Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/Documentation/config.txt b/Documentation/config.txt index 2c21a5f366..83f5ce9056 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -317,13 +317,7 @@ include::config/commit.txt[] include::config/credential.txt[] -completion.commands:: - This is only used by git-completion.bash to add or remove - commands from the list of completed commands. Normally only - porcelain commands and a few select others are completed. You - can add more commands, separated by space, in this - variable. Prefixing the command with '-' will remove it from - the existing list. +include::config/completion.txt[] include::diff-config.txt[] diff --git a/Documentation/config/completion.txt b/Documentation/config/completion.txt new file mode 100644 index 0000000000..4d99bf33c9 --- /dev/null +++ b/Documentation/config/completion.txt @@ -0,0 +1,7 @@ +completion.commands:: + This is only used by git-completion.bash to add or remove + commands from the list of completed commands. Normally only + porcelain commands and a few select others are completed. You + can add more commands, separated by space, in this + variable. Prefixing the command with '-' will remove it from + the existing list.