config.txt: move stash.* to a separate file
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 27 Oct 2018 06:23:40 +0000 (08:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Oct 2018 01:17:04 +0000 (10:17 +0900)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/config/stash.txt [new file with mode: 0644]
index 5e9fc20c41599574f6cb41c7d1af71e97c1b352f..aedc73f4eb9c666c78bd6d13196127b8916f4c5d 100644 (file)
@@ -415,15 +415,7 @@ include::config/ssh.txt[]
 
 include::config/status.txt[]
 
-stash.showPatch::
-       If this is set to true, the `git stash show` command without an
-       option will show the stash entry in patch form.  Defaults to false.
-       See description of 'show' command in linkgit:git-stash[1].
-
-stash.showStat::
-       If this is set to true, the `git stash show` command without an
-       option will show diffstat of the stash entry.  Defaults to true.
-       See description of 'show' command in linkgit:git-stash[1].
+include::config/stash.txt[]
 
 include::submodule-config.txt[]
 
diff --git a/Documentation/config/stash.txt b/Documentation/config/stash.txt
new file mode 100644 (file)
index 0000000..c583d46
--- /dev/null
@@ -0,0 +1,9 @@
+stash.showPatch::
+       If this is set to true, the `git stash show` command without an
+       option will show the stash entry in patch form.  Defaults to false.
+       See description of 'show' command in linkgit:git-stash[1].
+
+stash.showStat::
+       If this is set to true, the `git stash show` command without an
+       option will show diffstat of the stash entry.  Defaults to true.
+       See description of 'show' command in linkgit:git-stash[1].