1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-27 05:30:48 +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

View 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

View File

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