config.txt: move filter.* 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:22 UTC 734dfebbf39ca78e84b1dce000fc48f77520ece0
2 files changed +10 -9
Documentation/config.txt
+1 -9
@@ -329,15 +329,7 @@ include::config/fetch.txt[]
329
330 include::format-config.txt[]
331
332 -filter.<driver>.clean::
333 - The command which is used to convert the content of a worktree
334 - file to a blob upon checkin. See linkgit:gitattributes[5] for
335 - details.
336 -
337 -filter.<driver>.smudge::
338 - The command which is used to convert the content of a blob
339 - object to a worktree file upon checkout. See
340 - linkgit:gitattributes[5] for details.
332 +include::config/filter.txt[]
333
334 fsck.<msg-id>::
335 During fsck git may find issues with legacy data which
Documentation/config/filter.txt new
+9
@@ -0,0 +1,9 @@
1 +filter.<driver>.clean::
2 + The command which is used to convert the content of a worktree
3 + file to a blob upon checkin. See linkgit:gitattributes[5] for
4 + details.
5 +
6 +filter.<driver>.smudge::
7 + The command which is used to convert the content of a blob
8 + object to a worktree file upon checkout. See
9 + linkgit:gitattributes[5] for details.