Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]>
---
Documentation/config.txt | 10 +---------
Documentation/filter-config.txt | 9 +++++++++
2 files changed, 10 insertions(+), 9 deletions(-)
create mode 100644 Documentation/filter-config.txt
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 66791f0918..7c7dde188c 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -329,15 +329,7 @@ include::fetch-config.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::filter-config.txt[]
fsck.<msg-id>::
During fsck git may find issues with legacy data which
diff --git a/Documentation/filter-config.txt b/Documentation/filter-config.txt
new file mode 100644
index 0000000000..90dfe0ba5a
--- /dev/null
+++ b/Documentation/filter-config.txt
@@ -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.
--
2.19.1.647.g708186aaf9