1
0
mirror of https://github.com/git/git.git synced 2024-09-29 05:01:36 +02:00

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>
This commit is contained in:
Nguyễn Thái Ngọc Duy 2018-10-27 08:22:55 +02:00 committed by Junio C Hamano
parent 561fda20b8
commit 734dfebbf3
2 changed files with 10 additions and 9 deletions

@ -329,15 +329,7 @@ include::config/fetch.txt[]
include::format-config.txt[] include::format-config.txt[]
filter.<driver>.clean:: include::config/filter.txt[]
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.
fsck.<msg-id>:: fsck.<msg-id>::
During fsck git may find issues with legacy data which During fsck git may find issues with legacy data which

@ -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.