config.txt: move filter.* to a separate file
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 27 Oct 2018 06:22:55 +0000 (08:22 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Oct 2018 01:17:01 +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/filter.txt [new file with mode: 0644]
index f85014f803f8c0d9d7794e0e6d85514e67e9567e..a225dc530f55e2d250108b8d9a6f817183b64136 100644 (file)
@@ -329,15 +329,7 @@ include::config/fetch.txt[]
 
 include::format-config.txt[]
 
-filter.<driver>.clean::
-       The command which is used to convert the content of a worktree
-       file to a blob upon checkin.  See linkgit:gitattributes[5] for
-       details.
-
-filter.<driver>.smudge::
-       The command which is used to convert the content of a blob
-       object to a worktree file upon checkout.  See
-       linkgit:gitattributes[5] for details.
+include::config/filter.txt[]
 
 fsck.<msg-id>::
        During fsck git may find issues with legacy data which
diff --git a/Documentation/config/filter.txt b/Documentation/config/filter.txt
new file mode 100644 (file)
index 0000000..90dfe0b
--- /dev/null
@@ -0,0 +1,9 @@
+filter.<driver>.clean::
+       The command which is used to convert the content of a worktree
+       file to a blob upon checkin.  See linkgit:gitattributes[5] for
+       details.
+
+filter.<driver>.smudge::
+       The command which is used to convert the content of a blob
+       object to a worktree file upon checkout.  See
+       linkgit:gitattributes[5] for details.