diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-10-27 08:22:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-29 10:17:00 +0900 |
commit | 328e629c5c225f2b5c74514c63575cb6422822b7 (patch) | |
tree | 6fb537cabd7a17ad219f2f8d91cf6754a12c902d | |
parent | config.txt: move checkout.* to a separate file (diff) | |
download | tgif-328e629c5c225f2b5c74514c63575cb6422822b7.tar.xz |
config.txt: move clean.* to a separate file
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/config.txt | 4 | ||||
-rw-r--r-- | Documentation/config/clean.txt | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index a473ddc3c3..b5efac8cc5 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -307,9 +307,7 @@ include::config/browser.txt[] include::config/checkout.txt[] -clean.requireForce:: - A boolean to make git-clean do nothing unless given -f, - -i or -n. Defaults to true. +include::config/clean.txt[] color.advice:: A boolean to enable/disable color in hints (e.g. when a push diff --git a/Documentation/config/clean.txt b/Documentation/config/clean.txt new file mode 100644 index 0000000000..a807c925b9 --- /dev/null +++ b/Documentation/config/clean.txt @@ -0,0 +1,3 @@ +clean.requireForce:: + A boolean to make git-clean do nothing unless given -f, + -i or -n. Defaults to true. |