config.txt: move stash.* 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>

Nguyễn Thái Ngọc Duy committed Oct 27, 2018 at 08:23 UTC 46a8bbb27fb8283e5a470911c878628f74cb9db0
2 files changed +10 -9
Documentation/config.txt
+1 -9
@@ -415,15 +415,7 @@ include::config/ssh.txt[]
415
416 include::config/status.txt[]
417
418 -stash.showPatch::
419 - If this is set to true, the `git stash show` command without an
420 - option will show the stash entry in patch form. Defaults to false.
421 - See description of 'show' command in linkgit:git-stash[1].
422 -
423 -stash.showStat::
424 - If this is set to true, the `git stash show` command without an
425 - option will show diffstat of the stash entry. Defaults to true.
426 - See description of 'show' command in linkgit:git-stash[1].
418 +include::config/stash.txt[]
419
420 include::submodule-config.txt[]
421
Documentation/config/stash.txt new
+9
@@ -0,0 +1,9 @@
1 +stash.showPatch::
2 + If this is set to true, the `git stash show` command without an
3 + option will show the stash entry in patch form. Defaults to false.
4 + See description of 'show' command in linkgit:git-stash[1].
5 +
6 +stash.showStat::
7 + If this is set to true, the `git stash show` command without an
8 + option will show diffstat of the stash entry. Defaults to true.
9 + See description of 'show' command in linkgit:git-stash[1].