Autogenerated manpages for v2.48.1-2-g75716
[git-manpages.git] / man5 / gitattributes.5
blob12aa7561efcb2dfdf08ee14ad1d72d0407de0b56
1 '\" t
2 .\"     Title: gitattributes
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2025-01-13
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.48.1.2.g757161efcc
8 .\"  Language: English
9 .\"
10 .TH "GITATTRIBUTES" "5" "2025-01-13" "Git 2\&.48\&.1\&.2\&.g757161ef" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gitattributes \- Defining attributes per path
32 .SH "SYNOPSIS"
33 .sp
34 $GIT_DIR/info/attributes, \&.gitattributes
35 .SH "DESCRIPTION"
36 .sp
37 A \fBgitattributes\fR file is a simple text file that gives \fBattributes\fR to pathnames\&.
38 .sp
39 Each line in \fBgitattributes\fR file is of form:
40 .sp
41 .if n \{\
42 .RS 4
43 .\}
44 .nf
45 pattern attr1 attr2 \&.\&.\&.
46 .fi
47 .if n \{\
48 .RE
49 .\}
50 .sp
51 That is, a pattern followed by an attributes list, separated by whitespaces\&. Leading and trailing whitespaces are ignored\&. Lines that begin with \fI#\fR are ignored\&. Patterns that begin with a double quote are quoted in C style\&. When the pattern matches the path in question, the attributes listed on the line are given to the path\&.
52 .sp
53 Each attribute can be in one of these states for a given path:
54 .PP
55 Set
56 .RS 4
57 The path has the attribute with special value "true"; this is specified by listing only the name of the attribute in the attribute list\&.
58 .RE
59 .PP
60 Unset
61 .RS 4
62 The path has the attribute with special value "false"; this is specified by listing the name of the attribute prefixed with a dash
63 \fB\-\fR
64 in the attribute list\&.
65 .RE
66 .PP
67 Set to a value
68 .RS 4
69 The path has the attribute with specified string value; this is specified by listing the name of the attribute followed by an equal sign
70 \fB=\fR
71 and its value in the attribute list\&.
72 .RE
73 .PP
74 Unspecified
75 .RS 4
76 No pattern matches the path, and nothing says if the path has or does not have the attribute, the attribute for the path is said to be Unspecified\&.
77 .RE
78 .sp
79 When more than one pattern matches the path, a later line overrides an earlier line\&. This overriding is done per attribute\&.
80 .sp
81 The rules by which the pattern matches paths are the same as in \&.\fBgitignore\fR files (see \fBgitignore\fR(5)), with a few exceptions:
82 .sp
83 .RS 4
84 .ie n \{\
85 \h'-04'\(bu\h'+03'\c
86 .\}
87 .el \{\
88 .sp -1
89 .IP \(bu 2.3
90 .\}
91 negative patterns are forbidden
92 .RE
93 .sp
94 .RS 4
95 .ie n \{\
96 \h'-04'\(bu\h'+03'\c
97 .\}
98 .el \{\
99 .sp -1
100 .IP \(bu 2.3
102 patterns that match a directory do not recursively match paths inside that directory (so using the trailing\-slash
103 \fBpath/\fR
104 syntax is pointless in an attributes file; use
105 \fBpath/\fR** instead)
108 When deciding what attributes are assigned to a path, Git consults \fB$GIT_DIR/info/attributes\fR file (which has the highest precedence), \&.\fBgitattributes\fR file in the same directory as the path in question, and its parent directories up to the toplevel of the work tree (the further the directory that contains \&.\fBgitattributes\fR is from the path in question, the lower its precedence)\&. Finally global and system\-wide files are considered (they have the lowest precedence)\&.
110 When the \&.\fBgitattributes\fR file is missing from the work tree, the path in the index is used as a fall\-back\&. During checkout process, \&.\fBgitattributes\fR in the index is used and then the file in the working tree is used as a fall\-back\&.
112 If you wish to affect only a single repository (i\&.e\&., to assign attributes to files that are particular to one user\(cqs workflow for that repository), then attributes should be placed in the \fB$GIT_DIR/info/attributes\fR file\&. Attributes which should be version\-controlled and distributed to other repositories (i\&.e\&., attributes of interest to all users) should go into \&.\fBgitattributes\fR files\&. Attributes that should affect all repositories for a single user should be placed in a file specified by the \fBcore\&.attributesFile\fR configuration option (see \fBgit-config\fR(1))\&. Its default value is $XDG_CONFIG_HOME/git/attributes\&. If $XDG_CONFIG_HOME is either not set or empty, $HOME/\&.config/git/attributes is used instead\&. Attributes for all users on a system should be placed in the \fB$\fR(\fBprefix\fR)\fB/etc/gitattributes\fR file\&.
114 Sometimes you would need to override a setting of an attribute for a path to \fBUnspecified\fR state\&. This can be done by listing the name of the attribute prefixed with an exclamation point !\&.
115 .SH "RESERVED BUILTIN_* ATTRIBUTES"
117 builtin_* is a reserved namespace for builtin attribute values\&. Any user defined attributes under this namespace will be ignored and trigger a warning\&.
118 .SS "\fBbuiltin_objectmode\fR"
120 This attribute is for filtering files by their file bit modes (40000, 120000, 160000, 100755, 100644)\&. e\&.g\&. \fI:(attr:builtin_objectmode=160000)\fR\&. You may also check these values with \fBgit\fR \fBcheck\-attr\fR \fBbuiltin_objectmode\fR \fB\-\-\fR \fI<file>\fR\&. If the object is not in the index \fBgit\fR \fBcheck\-attr\fR \fB\-\-cached\fR will return unspecified\&.
121 .SH "EFFECTS"
123 Certain operations by Git can be influenced by assigning particular attributes to a path\&. Currently, the following operations are attributes\-aware\&.
124 .SS "Checking\-out and checking\-in"
126 These attributes affect how the contents stored in the repository are copied to the working tree files when commands such as \fIgit switch\fR, \fIgit checkout\fR and \fIgit merge\fR run\&. They also affect how Git stores the contents you prepare in the working tree in the repository upon \fIgit add\fR and \fIgit commit\fR\&.
128 .it 1 an-trap
129 .nr an-no-space-flag 1
130 .nr an-break-flag 1
132 .ps +1
133 \fBtext\fR
134 .RS 4
136 This attribute marks the path as a text file, which enables end\-of\-line conversion: When a matching file is added to the index, the file\(cqs line endings are normalized to LF in the index\&. Conversely, when the file is copied from the index to the working directory, its line endings may be converted from LF to CRLF depending on the \fBeol\fR attribute, the Git config, and the platform (see explanation of \fBeol\fR below)\&.
139 .RS 4
140 Setting the
141 \fBtext\fR
142 attribute on a path enables end\-of\-line conversion on checkin and checkout as described above\&. Line endings are normalized to LF in the index every time the file is checked in, even if the file was previously added to Git with CRLF line endings\&.
145 Unset
146 .RS 4
147 Unsetting the
148 \fBtext\fR
149 attribute on a path tells Git not to attempt any end\-of\-line conversion upon checkin or checkout\&.
152 Set to string value "auto"
153 .RS 4
154 When
155 \fBtext\fR
156 is set to "auto", Git decides by itself whether the file is text or binary\&. If it is text and the file was not already in Git with CRLF endings, line endings are converted on checkin and checkout as described above\&. Otherwise, no conversion is done on checkin or checkout\&.
159 Unspecified
160 .RS 4
161 If the
162 \fBtext\fR
163 attribute is unspecified, Git uses the
164 \fBcore\&.autocrlf\fR
165 configuration variable to determine if the file should be converted\&.
168 Any other value causes Git to act as if \fBtext\fR has been left unspecified\&.
171 .it 1 an-trap
172 .nr an-no-space-flag 1
173 .nr an-break-flag 1
175 .ps +1
176 \fBeol\fR
177 .RS 4
179 This attribute marks a path to use a specific line\-ending style in the working tree when it is checked out\&. It has effect only if \fBtext\fR or \fBtext=auto\fR is set (see above), but specifying \fBeol\fR automatically sets \fBtext\fR if \fBtext\fR was left unspecified\&.
181 Set to string value "crlf"
182 .RS 4
183 This setting converts the file\(cqs line endings in the working directory to CRLF when the file is checked out\&.
186 Set to string value "lf"
187 .RS 4
188 This setting uses the same line endings in the working directory as in the index when the file is checked out\&.
191 Unspecified
192 .RS 4
193 If the
194 \fBeol\fR
195 attribute is unspecified for a file, its line endings in the working directory are determined by the
196 \fBcore\&.autocrlf\fR
198 \fBcore\&.eol\fR
199 configuration variable (see the definitions of those options in
200 \fBgit-config\fR(1))\&. If
201 \fBtext\fR
202 is set but neither of those variables is, the default is
203 \fBeol=crlf\fR
204 on Windows and
205 \fBeol=lf\fR
206 on all other platforms\&.
210 .it 1 an-trap
211 .nr an-no-space-flag 1
212 .nr an-break-flag 1
214 .ps +1
215 \fBBackwards compatibility with crlf attribute\fR
216 .RS 4
218 For backwards compatibility, the \fBcrlf\fR attribute is interpreted as follows:
220 .if n \{\
221 .RS 4
224 crlf            text
225 \-crlf           \-text
226 crlf=input      eol=lf
228 .if n \{\
233 .it 1 an-trap
234 .nr an-no-space-flag 1
235 .nr an-break-flag 1
237 .ps +1
238 \fBEnd-of-line conversion\fR
239 .RS 4
241 While Git normally leaves file contents alone, it can be configured to normalize line endings to LF in the repository and, optionally, to convert them to CRLF when files are checked out\&.
243 If you simply want to have CRLF line endings in your working directory regardless of the repository you are working with, you can set the config variable "core\&.autocrlf" without using any attributes\&.
245 .if n \{\
246 .RS 4
249 [core]
250         autocrlf = true
252 .if n \{\
256 This does not force normalization of text files, but does ensure that text files that you introduce to the repository have their line endings normalized to LF when they are added, and that files that are already normalized in the repository stay normalized\&.
258 If you want to ensure that text files that any contributor introduces to the repository have their line endings normalized, you can set the \fBtext\fR attribute to "auto" for \fIall\fR files\&.
260 .if n \{\
261 .RS 4
264 *       text=auto
266 .if n \{\
270 The attributes allow a fine\-grained control, how the line endings are converted\&. Here is an example that will make Git normalize \&.txt, \&.vcproj and \&.sh files, ensure that \&.vcproj files have CRLF and \&.sh files have LF in the working directory, and prevent \&.jpg files from being normalized regardless of their content\&.
272 .if n \{\
273 .RS 4
276 *               text=auto
277 *\&.txt           text
278 *\&.vcproj        text eol=crlf
279 *\&.sh            text eol=lf
280 *\&.jpg           \-text
282 .if n \{\
286 .if n \{\
289 .RS 4
290 .it 1 an-trap
291 .nr an-no-space-flag 1
292 .nr an-break-flag 1
294 .ps +1
295 \fBNote\fR
296 .ps -1
299 When \fBtext=auto\fR conversion is enabled in a cross\-platform project using push and pull to a central repository the text files containing CRLFs should be normalized\&.
300 .sp .5v
303 From a clean working directory:
305 .if n \{\
306 .RS 4
309 $ echo "* text=auto" >\&.gitattributes
310 $ git add \-\-renormalize \&.
311 $ git status        # Show files that will be normalized
312 $ git commit \-m "Introduce end\-of\-line normalization"
314 .if n \{\
318 If any files that should not be normalized show up in \fIgit status\fR, unset their \fBtext\fR attribute before running \fIgit add \-u\fR\&.
320 .if n \{\
321 .RS 4
324 manual\&.pdf      \-text
326 .if n \{\
330 Conversely, text files that Git does not detect can have normalization enabled manually\&.
332 .if n \{\
333 .RS 4
336 weirdchars\&.txt  text
338 .if n \{\
342 If \fBcore\&.safecrlf\fR is set to "true" or "warn", Git verifies if the conversion is reversible for the current setting of \fBcore\&.autocrlf\fR\&. For "true", Git rejects irreversible conversions; for "warn", Git only prints a warning but accepts an irreversible conversion\&. The safety triggers to prevent such a conversion done to the files in the work tree, but there are a few exceptions\&. Even though\&...\:
344 .RS 4
345 .ie n \{\
346 \h'-04'\(bu\h'+03'\c
348 .el \{\
349 .sp -1
350 .IP \(bu 2.3
352 \fIgit add\fR
353 itself does not touch the files in the work tree, the next checkout would, so the safety triggers;
356 .RS 4
357 .ie n \{\
358 \h'-04'\(bu\h'+03'\c
360 .el \{\
361 .sp -1
362 .IP \(bu 2.3
364 \fIgit apply\fR
365 to update a text file with a patch does touch the files in the work tree, but the operation is about text files and CRLF conversion is about fixing the line ending inconsistencies, so the safety does not trigger;
368 .RS 4
369 .ie n \{\
370 \h'-04'\(bu\h'+03'\c
372 .el \{\
373 .sp -1
374 .IP \(bu 2.3
376 \fIgit diff\fR
377 itself does not touch the files in the work tree, it is often run to inspect the changes you intend to next
378 \fIgit add\fR\&. To catch potential problems early, safety triggers\&.
382 .it 1 an-trap
383 .nr an-no-space-flag 1
384 .nr an-break-flag 1
386 .ps +1
387 \fBworking-tree-encoding\fR
388 .RS 4
390 Git recognizes files encoded in ASCII or one of its supersets (e\&.g\&. UTF\-8, ISO\-8859\-1, \&...\:) as text files\&. Files encoded in certain other encodings (e\&.g\&. UTF\-16) are interpreted as binary and consequently built\-in Git text processing tools (e\&.g\&. \fIgit diff\fR) as well as most Git web front ends do not visualize the contents of these files by default\&.
392 In these cases you can tell Git the encoding of a file in the working directory with the \fBworking\-tree\-encoding\fR attribute\&. If a file with this attribute is added to Git, then Git re\-encodes the content from the specified encoding to UTF\-8\&. Finally, Git stores the UTF\-8 encoded content in its internal data structure (called "the index")\&. On checkout the content is re\-encoded back to the specified encoding\&.
394 Please note that using the \fBworking\-tree\-encoding\fR attribute may have a number of pitfalls:
396 .RS 4
397 .ie n \{\
398 \h'-04'\(bu\h'+03'\c
400 .el \{\
401 .sp -1
402 .IP \(bu 2.3
404 Alternative Git implementations (e\&.g\&. JGit or libgit2) and older Git versions (as of March 2018) do not support the
405 \fBworking\-tree\-encoding\fR
406 attribute\&. If you decide to use the
407 \fBworking\-tree\-encoding\fR
408 attribute in your repository, then it is strongly recommended to ensure that all clients working with the repository support it\&.
410 For example, Microsoft Visual Studio resources files (*\&.\fBrc\fR) or PowerShell script files (*\&.\fBps1\fR) are sometimes encoded in UTF\-16\&. If you declare *\&.\fBps1\fR
411 as files as UTF\-16 and you add
412 \fBfoo\&.ps1\fR
413 with a
414 \fBworking\-tree\-encoding\fR
415 enabled Git client, then
416 \fBfoo\&.ps1\fR
417 will be stored as UTF\-8 internally\&. A client without
418 \fBworking\-tree\-encoding\fR
419 support will checkout
420 \fBfoo\&.ps1\fR
421 as UTF\-8 encoded file\&. This will typically cause trouble for the users of this file\&.
423 If a Git client that does not support the
424 \fBworking\-tree\-encoding\fR
425 attribute adds a new file
426 \fBbar\&.ps1\fR, then
427 \fBbar\&.ps1\fR
428 will be stored "as\-is" internally (in this example probably as UTF\-16)\&. A client with
429 \fBworking\-tree\-encoding\fR
430 support will interpret the internal contents as UTF\-8 and try to convert it to UTF\-16 on checkout\&. That operation will fail and cause an error\&.
433 .RS 4
434 .ie n \{\
435 \h'-04'\(bu\h'+03'\c
437 .el \{\
438 .sp -1
439 .IP \(bu 2.3
441 Reencoding content to non\-UTF encodings can cause errors as the conversion might not be UTF\-8 round trip safe\&. If you suspect your encoding to not be round trip safe, then add it to
442 \fBcore\&.checkRoundtripEncoding\fR
443 to make Git check the round trip encoding (see
444 \fBgit-config\fR(1))\&. SHIFT\-JIS (Japanese character set) is known to have round trip issues with UTF\-8 and is checked by default\&.
447 .RS 4
448 .ie n \{\
449 \h'-04'\(bu\h'+03'\c
451 .el \{\
452 .sp -1
453 .IP \(bu 2.3
455 Reencoding content requires resources that might slow down certain Git operations (e\&.g
456 \fIgit checkout\fR
458 \fIgit add\fR)\&.
461 Use the \fBworking\-tree\-encoding\fR attribute only if you cannot store a file in UTF\-8 encoding and if you want Git to be able to process the content as text\&.
463 As an example, use the following attributes if your \fI*\&.ps1\fR files are UTF\-16 encoded with byte order mark (BOM) and you want Git to perform automatic line ending conversion based on your platform\&.
465 .if n \{\
466 .RS 4
469 *\&.ps1           text working\-tree\-encoding=UTF\-16
471 .if n \{\
475 Use the following attributes if your \fI*\&.ps1\fR files are UTF\-16 little endian encoded without BOM and you want Git to use Windows line endings in the working directory (use \fBUTF\-16LE\-BOM\fR instead of \fBUTF\-16LE\fR if you want UTF\-16 little endian with BOM)\&. Please note, it is highly recommended to explicitly define the line endings with \fBeol\fR if the \fBworking\-tree\-encoding\fR attribute is used to avoid ambiguity\&.
477 .if n \{\
478 .RS 4
481 *\&.ps1           text working\-tree\-encoding=UTF\-16LE eol=crlf
483 .if n \{\
487 You can get a list of all available encodings on your platform with the following command:
489 .if n \{\
490 .RS 4
493 iconv \-\-list
495 .if n \{\
499 If you do not know the encoding of a file, then you can use the \fBfile\fR command to guess the encoding:
501 .if n \{\
502 .RS 4
505 file foo\&.ps1
507 .if n \{\
512 .it 1 an-trap
513 .nr an-no-space-flag 1
514 .nr an-break-flag 1
516 .ps +1
517 \fBident\fR
518 .RS 4
520 When the attribute \fBident\fR is set for a path, Git replaces \fB$Id$\fR in the blob object with \fB$Id:\fR, followed by the 40\-character hexadecimal blob object name, followed by a dollar sign \fB$\fR upon checkout\&. Any byte sequence that begins with \fB$Id:\fR and ends with \fB$\fR in the worktree file is replaced with \fB$Id$\fR upon check\-in\&.
523 .it 1 an-trap
524 .nr an-no-space-flag 1
525 .nr an-break-flag 1
527 .ps +1
528 \fBfilter\fR
529 .RS 4
531 A \fBfilter\fR attribute can be set to a string value that names a filter driver specified in the configuration\&.
533 A filter driver consists of a \fBclean\fR command and a \fBsmudge\fR command, either of which can be left unspecified\&. Upon checkout, when the \fBsmudge\fR command is specified, the command is fed the blob object from its standard input, and its standard output is used to update the worktree file\&. Similarly, the \fBclean\fR command is used to convert the contents of worktree file upon checkin\&. By default these commands process only a single blob and terminate\&. If a long running \fBprocess\fR filter is used in place of \fBclean\fR and/or \fBsmudge\fR filters, then Git can process all blobs with a single filter command invocation for the entire life of a single Git command, for example \fBgit\fR \fBadd\fR \fB\-\-all\fR\&. If a long running \fBprocess\fR filter is configured then it always takes precedence over a configured single blob filter\&. See section below for the description of the protocol used to communicate with a \fBprocess\fR filter\&.
535 One use of the content filtering is to massage the content into a shape that is more convenient for the platform, filesystem, and the user to use\&. For this mode of operation, the key phrase here is "more convenient" and not "turning something unusable into usable"\&. In other words, the intent is that if someone unsets the filter driver definition, or does not have the appropriate filter program, the project should still be usable\&.
537 Another use of the content filtering is to store the content that cannot be directly used in the repository (e\&.g\&. a UUID that refers to the true content stored outside Git, or an encrypted content) and turn it into a usable form upon checkout (e\&.g\&. download the external content, or decrypt the encrypted content)\&.
539 These two filters behave differently, and by default, a filter is taken as the former, massaging the contents into more convenient shape\&. A missing filter driver definition in the config, or a filter driver that exits with a non\-zero status, is not an error but makes the filter a no\-op passthru\&.
541 You can declare that a filter turns a content that by itself is unusable into a usable content by setting the filter\&.<driver>\&.required configuration variable to \fBtrue\fR\&.
543 Note: Whenever the clean filter is changed, the repo should be renormalized: $ git add \-\-renormalize \&.
545 For example, in \&.gitattributes, you would assign the \fBfilter\fR attribute for paths\&.
547 .if n \{\
548 .RS 4
551 *\&.c     filter=indent
553 .if n \{\
557 Then you would define a "filter\&.indent\&.clean" and "filter\&.indent\&.smudge" configuration in your \&.git/config to specify a pair of commands to modify the contents of C programs when the source files are checked in ("clean" is run) and checked out (no change is made because the command is "cat")\&.
559 .if n \{\
560 .RS 4
563 [filter "indent"]
564         clean = indent
565         smudge = cat
567 .if n \{\
571 For best results, \fBclean\fR should not alter its output further if it is run twice ("clean\(->clean" should be equivalent to "clean"), and multiple \fBsmudge\fR commands should not alter \fBclean\fR\*(Aqs output ("smudge\(->smudge\(->clean" should be equivalent to "clean")\&. See the section on merging below\&.
573 The "indent" filter is well\-behaved in this regard: it will not modify input that is already correctly indented\&. In this case, the lack of a smudge filter means that the clean filter \fImust\fR accept its own output without modifying it\&.
575 If a filter \fImust\fR succeed in order to make the stored contents usable, you can declare that the filter is \fBrequired\fR, in the configuration:
577 .if n \{\
578 .RS 4
581 [filter "crypt"]
582         clean = openssl enc \&.\&.\&.
583         smudge = openssl enc \-d \&.\&.\&.
584         required
586 .if n \{\
590 Sequence "%f" on the filter command line is replaced with the name of the file the filter is working on\&. A filter might use this in keyword substitution\&. For example:
592 .if n \{\
593 .RS 4
596 [filter "p4"]
597         clean = git\-p4\-filter \-\-clean %f
598         smudge = git\-p4\-filter \-\-smudge %f
600 .if n \{\
604 Note that "%f" is the name of the path that is being worked on\&. Depending on the version that is being filtered, the corresponding file on disk may not exist, or may have different contents\&. So, smudge and clean commands should not try to access the file on disk, but only act as filters on the content provided to them on standard input\&.
607 .it 1 an-trap
608 .nr an-no-space-flag 1
609 .nr an-break-flag 1
611 .ps +1
612 \fBLong Running Filter Process\fR
613 .RS 4
615 If the filter command (a string value) is defined via \fBfilter\&.\fR\fI<driver>\fR\fB\&.process\fR then Git can process all blobs with a single filter invocation for the entire life of a single Git command\&. This is achieved by using the long\-running process protocol (described in technical/long\-running\-process\-protocol\&.txt)\&.
617 When Git encounters the first file that needs to be cleaned or smudged, it starts the filter and performs the handshake\&. In the handshake, the welcome message sent by Git is "git\-filter\-client", only version 2 is supported, and the supported capabilities are "clean", "smudge", and "delay"\&.
619 Afterwards Git sends a list of "key=value" pairs terminated with a flush packet\&. The list will contain at least the filter command (based on the supported capabilities) and the pathname of the file to filter relative to the repository root\&. Right after the flush packet Git sends the content split in zero or more pkt\-line packets and a flush packet to terminate content\&. Please note, that the filter must not send any response before it received the content and the final flush packet\&. Also note that the "value" of a "key=value" pair can contain the "=" character whereas the key would never contain that character\&.
621 .if n \{\
622 .RS 4
625 packet:          git> command=smudge
626 packet:          git> pathname=path/testfile\&.dat
627 packet:          git> 0000
628 packet:          git> CONTENT
629 packet:          git> 0000
631 .if n \{\
635 The filter is expected to respond with a list of "key=value" pairs terminated with a flush packet\&. If the filter does not experience problems then the list must contain a "success" status\&. Right after these packets the filter is expected to send the content in zero or more pkt\-line packets and a flush packet at the end\&. Finally, a second list of "key=value" pairs terminated with a flush packet is expected\&. The filter can change the status in the second list or keep the status as is with an empty list\&. Please note that the empty list must be terminated with a flush packet regardless\&.
637 .if n \{\
638 .RS 4
641 packet:          git< status=success
642 packet:          git< 0000
643 packet:          git< SMUDGED_CONTENT
644 packet:          git< 0000
645 packet:          git< 0000  # empty list, keep "status=success" unchanged!
647 .if n \{\
651 If the result content is empty then the filter is expected to respond with a "success" status and a flush packet to signal the empty content\&.
653 .if n \{\
654 .RS 4
657 packet:          git< status=success
658 packet:          git< 0000
659 packet:          git< 0000  # empty content!
660 packet:          git< 0000  # empty list, keep "status=success" unchanged!
662 .if n \{\
666 In case the filter cannot or does not want to process the content, it is expected to respond with an "error" status\&.
668 .if n \{\
669 .RS 4
672 packet:          git< status=error
673 packet:          git< 0000
675 .if n \{\
679 If the filter experiences an error during processing, then it can send the status "error" after the content was (partially or completely) sent\&.
681 .if n \{\
682 .RS 4
685 packet:          git< status=success
686 packet:          git< 0000
687 packet:          git< HALF_WRITTEN_ERRONEOUS_CONTENT
688 packet:          git< 0000
689 packet:          git< status=error
690 packet:          git< 0000
692 .if n \{\
696 In case the filter cannot or does not want to process the content as well as any future content for the lifetime of the Git process, then it is expected to respond with an "abort" status at any point in the protocol\&.
698 .if n \{\
699 .RS 4
702 packet:          git< status=abort
703 packet:          git< 0000
705 .if n \{\
709 Git neither stops nor restarts the filter process in case the "error"/"abort" status is set\&. However, Git sets its exit code according to the \fBfilter\&.\fR\fI<driver>\fR\fB\&.required\fR flag, mimicking the behavior of the \fBfilter\&.\fR\fI<driver>\fR\fB\&.clean\fR / \fBfilter\&.\fR\fI<driver>\fR\fB\&.smudge\fR mechanism\&.
711 If the filter dies during the communication or does not adhere to the protocol then Git will stop the filter process and restart it with the next file that needs to be processed\&. Depending on the \fBfilter\&.\fR\fI<driver>\fR\fB\&.required\fR flag Git will interpret that as error\&.
714 .it 1 an-trap
715 .nr an-no-space-flag 1
716 .nr an-break-flag 1
718 .ps +1
719 \fBDelay\fR
720 .RS 4
722 If the filter supports the "delay" capability, then Git can send the flag "can\-delay" after the filter command and pathname\&. This flag denotes that the filter can delay filtering the current blob (e\&.g\&. to compensate network latencies) by responding with no content but with the status "delayed" and a flush packet\&.
724 .if n \{\
725 .RS 4
728 packet:          git> command=smudge
729 packet:          git> pathname=path/testfile\&.dat
730 packet:          git> can\-delay=1
731 packet:          git> 0000
732 packet:          git> CONTENT
733 packet:          git> 0000
734 packet:          git< status=delayed
735 packet:          git< 0000
737 .if n \{\
741 If the filter supports the "delay" capability then it must support the "list_available_blobs" command\&. If Git sends this command, then the filter is expected to return a list of pathnames representing blobs that have been delayed earlier and are now available\&. The list must be terminated with a flush packet followed by a "success" status that is also terminated with a flush packet\&. If no blobs for the delayed paths are available, yet, then the filter is expected to block the response until at least one blob becomes available\&. The filter can tell Git that it has no more delayed blobs by sending an empty list\&. As soon as the filter responds with an empty list, Git stops asking\&. All blobs that Git has not received at this point are considered missing and will result in an error\&.
743 .if n \{\
744 .RS 4
747 packet:          git> command=list_available_blobs
748 packet:          git> 0000
749 packet:          git< pathname=path/testfile\&.dat
750 packet:          git< pathname=path/otherfile\&.dat
751 packet:          git< 0000
752 packet:          git< status=success
753 packet:          git< 0000
755 .if n \{\
759 After Git received the pathnames, it will request the corresponding blobs again\&. These requests contain a pathname and an empty content section\&. The filter is expected to respond with the smudged content in the usual way as explained above\&.
761 .if n \{\
762 .RS 4
765 packet:          git> command=smudge
766 packet:          git> pathname=path/testfile\&.dat
767 packet:          git> 0000
768 packet:          git> 0000  # empty content!
769 packet:          git< status=success
770 packet:          git< 0000
771 packet:          git< SMUDGED_CONTENT
772 packet:          git< 0000
773 packet:          git< 0000  # empty list, keep "status=success" unchanged!
775 .if n \{\
780 .it 1 an-trap
781 .nr an-no-space-flag 1
782 .nr an-break-flag 1
784 .ps +1
785 \fBExample\fR
786 .RS 4
788 A long running filter demo implementation can be found in \fBcontrib/long\-running\-filter/example\&.pl\fR located in the Git core repository\&. If you develop your own long running filter process then the \fBGIT_TRACE_PACKET\fR environment variables can be very helpful for debugging (see \fBgit\fR(1))\&.
790 Please note that you cannot use an existing \fBfilter\&.\fR\fI<driver>\fR\fB\&.clean\fR or \fBfilter\&.\fR\fI<driver>\fR\fB\&.smudge\fR command with \fBfilter\&.\fR\fI<driver>\fR\fB\&.process\fR because the former two use a different inter process communication protocol than the latter one\&.
793 .it 1 an-trap
794 .nr an-no-space-flag 1
795 .nr an-break-flag 1
797 .ps +1
798 \fBInteraction between checkin/checkout attributes\fR
799 .RS 4
801 In the check\-in codepath, the worktree file is first converted with \fBfilter\fR driver (if specified and corresponding driver defined), then the result is processed with \fBident\fR (if specified), and then finally with \fBtext\fR (again, if specified and applicable)\&.
803 In the check\-out codepath, the blob content is first converted with \fBtext\fR, and then \fBident\fR and fed to \fBfilter\fR\&.
806 .it 1 an-trap
807 .nr an-no-space-flag 1
808 .nr an-break-flag 1
810 .ps +1
811 \fBMerging branches with differing checkin/checkout attributes\fR
812 .RS 4
814 If you have added attributes to a file that cause the canonical repository format for that file to change, such as adding a clean/smudge filter or text/eol/ident attributes, merging anything where the attribute is not in place would normally cause merge conflicts\&.
816 To prevent these unnecessary merge conflicts, Git can be told to run a virtual check\-out and check\-in of all three stages of a file when resolving a three\-way merge by setting the \fBmerge\&.renormalize\fR configuration variable\&. This prevents changes caused by check\-in conversion from causing spurious merge conflicts when a converted file is merged with an unconverted file\&.
818 As long as a "smudge\(->clean" results in the same output as a "clean" even on files that are already smudged, this strategy will automatically resolve all filter\-related conflicts\&. Filters that do not act in this way may cause additional merge conflicts that must be resolved manually\&.
820 .SS "Generating diff text"
822 .it 1 an-trap
823 .nr an-no-space-flag 1
824 .nr an-break-flag 1
826 .ps +1
827 \fBdiff\fR
828 .RS 4
830 The attribute \fBdiff\fR affects how Git generates diffs for particular files\&. It can tell Git whether to generate a textual patch for the path or to treat the path as a binary file\&. It can also affect what line is shown on the hunk header \fB@@\fR \fB\-k,l\fR \fB+n,m\fR \fB@@\fR line, tell Git to use an external command to generate the diff, or ask Git to convert binary files to a text format before generating the diff\&.
833 .RS 4
834 A path to which the
835 \fBdiff\fR
836 attribute is set is treated as text, even when they contain byte values that normally never appear in text files, such as NUL\&.
839 Unset
840 .RS 4
841 A path to which the
842 \fBdiff\fR
843 attribute is unset will generate
844 \fBBinary\fR
845 \fBfiles\fR
846 \fBdiffer\fR
847 (or a binary patch, if binary patches are enabled)\&.
850 Unspecified
851 .RS 4
852 A path to which the
853 \fBdiff\fR
854 attribute is unspecified first gets its contents inspected, and if it looks like text and is smaller than core\&.bigFileThreshold, it is treated as text\&. Otherwise it would generate
855 \fBBinary\fR
856 \fBfiles\fR
857 \fBdiffer\fR\&.
860 String
861 .RS 4
862 Diff is shown using the specified diff driver\&. Each driver may specify one or more options, as described in the following section\&. The options for the diff driver "foo" are defined by the configuration variables in the "diff\&.foo" section of the Git config file\&.
866 .it 1 an-trap
867 .nr an-no-space-flag 1
868 .nr an-break-flag 1
870 .ps +1
871 \fBDefining an external diff driver\fR
872 .RS 4
874 The definition of a diff driver is done in \fBgitconfig\fR, not \fBgitattributes\fR file, so strictly speaking this manual page is a wrong place to talk about it\&. However\&...\:
876 To define an external diff driver \fBjcdiff\fR, add a section to your \fB$GIT_DIR/config\fR file (or \fB$HOME/\&.gitconfig\fR file) like this:
878 .if n \{\
879 .RS 4
882 [diff "jcdiff"]
883         command = j\-c\-diff
885 .if n \{\
889 When Git needs to show you a diff for the path with \fBdiff\fR attribute set to \fBjcdiff\fR, it calls the command you specified with the above configuration, i\&.e\&. \fBj\-c\-diff\fR, with 7 parameters, just like \fBGIT_EXTERNAL_DIFF\fR program is called\&. See \fBgit\fR(1) for details\&.
891 If the program is able to ignore certain changes (similar to \fBgit\fR \fBdiff\fR \fB\-\-ignore\-space\-change\fR), then also set the option \fBtrustExitCode\fR to true\&. It is then expected to return exit code 1 if it finds significant changes and 0 if it doesn\(cqt\&.
894 .it 1 an-trap
895 .nr an-no-space-flag 1
896 .nr an-break-flag 1
898 .ps +1
899 \fBSetting the internal diff algorithm\fR
900 .RS 4
902 The diff algorithm can be set through the \fBdiff\&.algorithm\fR config key, but sometimes it may be helpful to set the diff algorithm per path\&. For example, one may want to use the \fBminimal\fR diff algorithm for \&.json files, and the \fBhistogram\fR for \&.c files, and so on without having to pass in the algorithm through the command line each time\&.
904 First, in \&.\fBgitattributes\fR, assign the \fBdiff\fR attribute for paths\&.
906 .if n \{\
907 .RS 4
910 *\&.json diff=<name>
912 .if n \{\
916 Then, define a "diff\&.<name>\&.algorithm" configuration to specify the diff algorithm, choosing from \fBmyers\fR, \fBpatience\fR, \fBminimal\fR, or \fBhistogram\fR\&.
918 .if n \{\
919 .RS 4
922 [diff "<name>"]
923   algorithm = histogram
925 .if n \{\
929 This diff algorithm applies to user facing diff output like git\-diff(1), git\-show(1) and is used for the \fB\-\-stat\fR output as well\&. The merge machinery will not use the diff algorithm set through this method\&.
930 .if n \{\
933 .RS 4
934 .it 1 an-trap
935 .nr an-no-space-flag 1
936 .nr an-break-flag 1
938 .ps +1
939 \fBNote\fR
940 .ps -1
943 If \fBdiff\&.\fR\fI<name>\fR\fB\&.command\fR is defined for path with the \fBdiff=\fR\fI<name>\fR attribute, it is executed as an external diff driver (see above), and adding \fBdiff\&.\fR\fI<name>\fR\fB\&.algorithm\fR has no effect, as the algorithm is not passed to the external diff driver\&.
944 .sp .5v
948 .it 1 an-trap
949 .nr an-no-space-flag 1
950 .nr an-break-flag 1
952 .ps +1
953 \fBDefining a custom hunk-header\fR
954 .RS 4
956 Each group of changes (called a "hunk") in the textual diff output is prefixed with a line of the form:
958 .if n \{\
959 .RS 4
962 @@ \-k,l +n,m @@ TEXT
964 .if n \{\
968 This is called a \fIhunk header\fR\&. The "TEXT" portion is by default a line that begins with an alphabet, an underscore or a dollar sign; this matches what GNU \fIdiff \-p\fR output uses\&. This default selection however is not suited for some contents, and you can use a customized pattern to make a selection\&.
970 First, in \&.gitattributes, you would assign the \fBdiff\fR attribute for paths\&.
972 .if n \{\
973 .RS 4
976 *\&.tex   diff=tex
978 .if n \{\
982 Then, you would define a "diff\&.tex\&.xfuncname" configuration to specify a regular expression that matches a line that you would want to appear as the hunk header "TEXT"\&. Add a section to your \fB$GIT_DIR/config\fR file (or \fB$HOME/\&.gitconfig\fR file) like this:
984 .if n \{\
985 .RS 4
988 [diff "tex"]
989         xfuncname = "^(\e\e\e\e(sub)*section\e\e{\&.*)$"
991 .if n \{\
995 Note\&. A single level of backslashes are eaten by the configuration file parser, so you would need to double the backslashes; the pattern above picks a line that begins with a backslash, and zero or more occurrences of \fBsub\fR followed by \fBsection\fR followed by open brace, to the end of line\&.
997 There are a few built\-in patterns to make this easier, and \fBtex\fR is one of them, so you do not have to write the above in your configuration file (you still need to enable this with the attribute mechanism, via \&.\fBgitattributes\fR)\&. The following built in patterns are available:
999 .RS 4
1000 .ie n \{\
1001 \h'-04'\(bu\h'+03'\c
1003 .el \{\
1004 .sp -1
1005 .IP \(bu 2.3
1007 \fBada\fR
1008 suitable for source code in the Ada language\&.
1011 .RS 4
1012 .ie n \{\
1013 \h'-04'\(bu\h'+03'\c
1015 .el \{\
1016 .sp -1
1017 .IP \(bu 2.3
1019 \fBbash\fR
1020 suitable for source code in the Bourne\-Again SHell language\&. Covers a superset of POSIX shell function definitions\&.
1023 .RS 4
1024 .ie n \{\
1025 \h'-04'\(bu\h'+03'\c
1027 .el \{\
1028 .sp -1
1029 .IP \(bu 2.3
1031 \fBbibtex\fR
1032 suitable for files with BibTeX coded references\&.
1035 .RS 4
1036 .ie n \{\
1037 \h'-04'\(bu\h'+03'\c
1039 .el \{\
1040 .sp -1
1041 .IP \(bu 2.3
1043 \fBcpp\fR
1044 suitable for source code in the C and C++ languages\&.
1047 .RS 4
1048 .ie n \{\
1049 \h'-04'\(bu\h'+03'\c
1051 .el \{\
1052 .sp -1
1053 .IP \(bu 2.3
1055 \fBcsharp\fR
1056 suitable for source code in the C# language\&.
1059 .RS 4
1060 .ie n \{\
1061 \h'-04'\(bu\h'+03'\c
1063 .el \{\
1064 .sp -1
1065 .IP \(bu 2.3
1067 \fBcss\fR
1068 suitable for cascading style sheets\&.
1071 .RS 4
1072 .ie n \{\
1073 \h'-04'\(bu\h'+03'\c
1075 .el \{\
1076 .sp -1
1077 .IP \(bu 2.3
1079 \fBdts\fR
1080 suitable for devicetree (DTS) files\&.
1083 .RS 4
1084 .ie n \{\
1085 \h'-04'\(bu\h'+03'\c
1087 .el \{\
1088 .sp -1
1089 .IP \(bu 2.3
1091 \fBelixir\fR
1092 suitable for source code in the Elixir language\&.
1095 .RS 4
1096 .ie n \{\
1097 \h'-04'\(bu\h'+03'\c
1099 .el \{\
1100 .sp -1
1101 .IP \(bu 2.3
1103 \fBfortran\fR
1104 suitable for source code in the Fortran language\&.
1107 .RS 4
1108 .ie n \{\
1109 \h'-04'\(bu\h'+03'\c
1111 .el \{\
1112 .sp -1
1113 .IP \(bu 2.3
1115 \fBfountain\fR
1116 suitable for Fountain documents\&.
1119 .RS 4
1120 .ie n \{\
1121 \h'-04'\(bu\h'+03'\c
1123 .el \{\
1124 .sp -1
1125 .IP \(bu 2.3
1127 \fBgolang\fR
1128 suitable for source code in the Go language\&.
1131 .RS 4
1132 .ie n \{\
1133 \h'-04'\(bu\h'+03'\c
1135 .el \{\
1136 .sp -1
1137 .IP \(bu 2.3
1139 \fBhtml\fR
1140 suitable for HTML/XHTML documents\&.
1143 .RS 4
1144 .ie n \{\
1145 \h'-04'\(bu\h'+03'\c
1147 .el \{\
1148 .sp -1
1149 .IP \(bu 2.3
1151 \fBjava\fR
1152 suitable for source code in the Java language\&.
1155 .RS 4
1156 .ie n \{\
1157 \h'-04'\(bu\h'+03'\c
1159 .el \{\
1160 .sp -1
1161 .IP \(bu 2.3
1163 \fBkotlin\fR
1164 suitable for source code in the Kotlin language\&.
1167 .RS 4
1168 .ie n \{\
1169 \h'-04'\(bu\h'+03'\c
1171 .el \{\
1172 .sp -1
1173 .IP \(bu 2.3
1175 \fBmarkdown\fR
1176 suitable for Markdown documents\&.
1179 .RS 4
1180 .ie n \{\
1181 \h'-04'\(bu\h'+03'\c
1183 .el \{\
1184 .sp -1
1185 .IP \(bu 2.3
1187 \fBmatlab\fR
1188 suitable for source code in the MATLAB and Octave languages\&.
1191 .RS 4
1192 .ie n \{\
1193 \h'-04'\(bu\h'+03'\c
1195 .el \{\
1196 .sp -1
1197 .IP \(bu 2.3
1199 \fBobjc\fR
1200 suitable for source code in the Objective\-C language\&.
1203 .RS 4
1204 .ie n \{\
1205 \h'-04'\(bu\h'+03'\c
1207 .el \{\
1208 .sp -1
1209 .IP \(bu 2.3
1211 \fBpascal\fR
1212 suitable for source code in the Pascal/Delphi language\&.
1215 .RS 4
1216 .ie n \{\
1217 \h'-04'\(bu\h'+03'\c
1219 .el \{\
1220 .sp -1
1221 .IP \(bu 2.3
1223 \fBperl\fR
1224 suitable for source code in the Perl language\&.
1227 .RS 4
1228 .ie n \{\
1229 \h'-04'\(bu\h'+03'\c
1231 .el \{\
1232 .sp -1
1233 .IP \(bu 2.3
1235 \fBphp\fR
1236 suitable for source code in the PHP language\&.
1239 .RS 4
1240 .ie n \{\
1241 \h'-04'\(bu\h'+03'\c
1243 .el \{\
1244 .sp -1
1245 .IP \(bu 2.3
1247 \fBpython\fR
1248 suitable for source code in the Python language\&.
1251 .RS 4
1252 .ie n \{\
1253 \h'-04'\(bu\h'+03'\c
1255 .el \{\
1256 .sp -1
1257 .IP \(bu 2.3
1259 \fBruby\fR
1260 suitable for source code in the Ruby language\&.
1263 .RS 4
1264 .ie n \{\
1265 \h'-04'\(bu\h'+03'\c
1267 .el \{\
1268 .sp -1
1269 .IP \(bu 2.3
1271 \fBrust\fR
1272 suitable for source code in the Rust language\&.
1275 .RS 4
1276 .ie n \{\
1277 \h'-04'\(bu\h'+03'\c
1279 .el \{\
1280 .sp -1
1281 .IP \(bu 2.3
1283 \fBscheme\fR
1284 suitable for source code in the Scheme language\&.
1287 .RS 4
1288 .ie n \{\
1289 \h'-04'\(bu\h'+03'\c
1291 .el \{\
1292 .sp -1
1293 .IP \(bu 2.3
1295 \fBtex\fR
1296 suitable for source code for LaTeX documents\&.
1300 .it 1 an-trap
1301 .nr an-no-space-flag 1
1302 .nr an-break-flag 1
1304 .ps +1
1305 \fBCustomizing word diff\fR
1306 .RS 4
1308 You can customize the rules that \fBgit\fR \fBdiff\fR \fB\-\-word\-diff\fR uses to split words in a line, by specifying an appropriate regular expression in the "diff\&.*\&.wordRegex" configuration variable\&. For example, in TeX a backslash followed by a sequence of letters forms a command, but several such commands can be run together without intervening whitespace\&. To separate them, use a regular expression in your \fB$GIT_DIR/config\fR file (or \fB$HOME/\&.gitconfig\fR file) like this:
1310 .if n \{\
1311 .RS 4
1314 [diff "tex"]
1315         wordRegex = "\e\e\e\e[a\-zA\-Z]+|[{}]|\e\e\e\e\&.|[^\e\e{}[:space:]]+"
1317 .if n \{\
1321 A built\-in pattern is provided for all languages listed in the previous section\&.
1324 .it 1 an-trap
1325 .nr an-no-space-flag 1
1326 .nr an-break-flag 1
1328 .ps +1
1329 \fBPerforming text diffs of binary files\fR
1330 .RS 4
1332 Sometimes it is desirable to see the diff of a text\-converted version of some binary files\&. For example, a word processor document can be converted to an ASCII text representation, and the diff of the text shown\&. Even though this conversion loses some information, the resulting diff is useful for human viewing (but cannot be applied directly)\&.
1334 The \fBtextconv\fR config option is used to define a program for performing such a conversion\&. The program should take a single argument, the name of a file to convert, and produce the resulting text on stdout\&.
1336 For example, to show the diff of the exif information of a file instead of the binary information (assuming you have the exif tool installed), add the following section to your \fB$GIT_DIR/config\fR file (or \fB$HOME/\&.gitconfig\fR file):
1338 .if n \{\
1339 .RS 4
1342 [diff "jpg"]
1343         textconv = exif
1345 .if n \{\
1349 .if n \{\
1352 .RS 4
1353 .it 1 an-trap
1354 .nr an-no-space-flag 1
1355 .nr an-break-flag 1
1357 .ps +1
1358 \fBNote\fR
1359 .ps -1
1362 The text conversion is generally a one\-way conversion; in this example, we lose the actual image contents and focus just on the text data\&. This means that diffs generated by textconv are \fInot\fR suitable for applying\&. For this reason, only \fBgit\fR \fBdiff\fR and the \fBgit\fR \fBlog\fR family of commands (i\&.e\&., log, whatchanged, show) will perform text conversion\&. \fBgit\fR \fBformat\-patch\fR will never generate this output\&. If you want to send somebody a text\-converted diff of a binary file (e\&.g\&., because it quickly conveys the changes you have made), you should generate it separately and send it as a comment \fIin addition to\fR the usual binary diff that you might send\&.
1363 .sp .5v
1366 Because text conversion can be slow, especially when doing a large number of them with \fBgit\fR \fBlog\fR \fB\-p\fR, Git provides a mechanism to cache the output and use it in future diffs\&. To enable caching, set the "cachetextconv" variable in your diff driver\(cqs config\&. For example:
1368 .if n \{\
1369 .RS 4
1372 [diff "jpg"]
1373         textconv = exif
1374         cachetextconv = true
1376 .if n \{\
1380 This will cache the result of running "exif" on each blob indefinitely\&. If you change the textconv config variable for a diff driver, Git will automatically invalidate the cache entries and re\-run the textconv filter\&. If you want to invalidate the cache manually (e\&.g\&., because your version of "exif" was updated and now produces better output), you can remove the cache manually with \fBgit\fR \fBupdate\-ref\fR \fB\-d\fR \fBrefs/notes/textconv/jpg\fR (where "jpg" is the name of the diff driver, as in the example above)\&.
1383 .it 1 an-trap
1384 .nr an-no-space-flag 1
1385 .nr an-break-flag 1
1387 .ps +1
1388 \fBChoosing textconv versus external diff\fR
1389 .RS 4
1391 If you want to show differences between binary or specially\-formatted blobs in your repository, you can choose to use either an external diff command, or to use textconv to convert them to a diff\-able text format\&. Which method you choose depends on your exact situation\&.
1393 The advantage of using an external diff command is flexibility\&. You are not bound to find line\-oriented changes, nor is it necessary for the output to resemble unified diff\&. You are free to locate and report changes in the most appropriate way for your data format\&.
1395 A textconv, by comparison, is much more limiting\&. You provide a transformation of the data into a line\-oriented text format, and Git uses its regular diff tools to generate the output\&. There are several advantages to choosing this method:
1397 .RS 4
1398 .ie n \{\
1399 \h'-04' 1.\h'+01'\c
1401 .el \{\
1402 .sp -1
1403 .IP "  1." 4.2
1405 Ease of use\&. It is often much simpler to write a binary to text transformation than it is to perform your own diff\&. In many cases, existing programs can be used as textconv filters (e\&.g\&., exif, odt2txt)\&.
1408 .RS 4
1409 .ie n \{\
1410 \h'-04' 2.\h'+01'\c
1412 .el \{\
1413 .sp -1
1414 .IP "  2." 4.2
1416 Git diff features\&. By performing only the transformation step yourself, you can still utilize many of Git\(cqs diff features, including colorization, word\-diff, and combined diffs for merges\&.
1419 .RS 4
1420 .ie n \{\
1421 \h'-04' 3.\h'+01'\c
1423 .el \{\
1424 .sp -1
1425 .IP "  3." 4.2
1427 Caching\&. Textconv caching can speed up repeated diffs, such as those you might trigger by running
1428 \fBgit\fR
1429 \fBlog\fR
1430 \fB\-p\fR\&.
1434 .it 1 an-trap
1435 .nr an-no-space-flag 1
1436 .nr an-break-flag 1
1438 .ps +1
1439 \fBMarking files as binary\fR
1440 .RS 4
1442 Git usually guesses correctly whether a blob contains text or binary data by examining the beginning of the contents\&. However, sometimes you may want to override its decision, either because a blob contains binary data later in the file, or because the content, while technically composed of text characters, is opaque to a human reader\&. For example, many postscript files contain only ASCII characters, but produce noisy and meaningless diffs\&.
1444 The simplest way to mark a file as binary is to unset the diff attribute in the \&.\fBgitattributes\fR file:
1446 .if n \{\
1447 .RS 4
1450 *\&.ps \-diff
1452 .if n \{\
1456 This will cause Git to generate \fBBinary\fR \fBfiles\fR \fBdiffer\fR (or a binary patch, if binary patches are enabled) instead of a regular diff\&.
1458 However, one may also want to specify other diff driver attributes\&. For example, you might want to use \fBtextconv\fR to convert postscript files to an ASCII representation for human viewing, but otherwise treat them as binary files\&. You cannot specify both \fB\-diff\fR and \fBdiff=ps\fR attributes\&. The solution is to use the \fBdiff\&.\fR*\&.\fBbinary\fR config option:
1460 .if n \{\
1461 .RS 4
1464 [diff "ps"]
1465   textconv = ps2ascii
1466   binary = true
1468 .if n \{\
1472 .SS "Performing a three\-way merge"
1474 .it 1 an-trap
1475 .nr an-no-space-flag 1
1476 .nr an-break-flag 1
1478 .ps +1
1479 \fBmerge\fR
1480 .RS 4
1482 The attribute \fBmerge\fR affects how three versions of a file are merged when a file\-level merge is necessary during \fBgit\fR \fBmerge\fR, and other commands such as \fBgit\fR \fBrevert\fR and \fBgit\fR \fBcherry\-pick\fR\&.
1485 .RS 4
1486 Built\-in 3\-way merge driver is used to merge the contents in a way similar to
1487 \fImerge\fR
1488 command of
1489 \fBRCS\fR
1490 suite\&. This is suitable for ordinary text files\&.
1493 Unset
1494 .RS 4
1495 Take the version from the current branch as the tentative merge result, and declare that the merge has conflicts\&. This is suitable for binary files that do not have a well\-defined merge semantics\&.
1498 Unspecified
1499 .RS 4
1500 By default, this uses the same built\-in 3\-way merge driver as is the case when the
1501 \fBmerge\fR
1502 attribute is set\&. However, the
1503 \fBmerge\&.default\fR
1504 configuration variable can name different merge driver to be used with paths for which the
1505 \fBmerge\fR
1506 attribute is unspecified\&.
1509 String
1510 .RS 4
1511 3\-way merge is performed using the specified custom merge driver\&. The built\-in 3\-way merge driver can be explicitly specified by asking for "text" driver; the built\-in "take the current branch" driver can be requested with "binary"\&.
1515 .it 1 an-trap
1516 .nr an-no-space-flag 1
1517 .nr an-break-flag 1
1519 .ps +1
1520 \fBBuilt-in merge drivers\fR
1521 .RS 4
1523 There are a few built\-in low\-level merge drivers defined that can be asked for via the \fBmerge\fR attribute\&.
1525 text
1526 .RS 4
1527 Usual 3\-way file level merge for text files\&. Conflicted regions are marked with conflict markers <<<<<<<,
1528 \fB=======\fR
1529 and >>>>>>>\&. The version from your branch appears before the
1530 \fB=======\fR
1531 marker, and the version from the merged branch appears after the
1532 \fB=======\fR
1533 marker\&.
1536 binary
1537 .RS 4
1538 Keep the version from your branch in the work tree, but leave the path in the conflicted state for the user to sort out\&.
1541 union
1542 .RS 4
1543 Run 3\-way file level merge for text files, but take lines from both versions, instead of leaving conflict markers\&. This tends to leave the added lines in the resulting file in random order and the user should verify the result\&. Do not use this if you do not understand the implications\&.
1547 .it 1 an-trap
1548 .nr an-no-space-flag 1
1549 .nr an-break-flag 1
1551 .ps +1
1552 \fBDefining a custom merge driver\fR
1553 .RS 4
1555 The definition of a merge driver is done in the \&.\fBgit/config\fR file, not in the \fBgitattributes\fR file, so strictly speaking this manual page is a wrong place to talk about it\&. However\&...\:
1557 To define a custom merge driver \fBfilfre\fR, add a section to your \fB$GIT_DIR/config\fR file (or \fB$HOME/\&.gitconfig\fR file) like this:
1559 .if n \{\
1560 .RS 4
1563 [merge "filfre"]
1564         name = feel\-free merge driver
1565         driver = filfre %O %A %B %L %P
1566         recursive = binary
1568 .if n \{\
1572 The \fBmerge\&.\fR*\&.\fBname\fR variable gives the driver a human\-readable name\&.
1574 The \fBmerge\&.\fR*\&.\fBdriver\fR variable\(cqs value is used to construct a command to run to common ancestor\(cqs version (%O), current version (%A) and the other branches\*(Aq version (%B)\&. These three tokens are replaced with the names of temporary files that hold the contents of these versions when the command line is built\&. Additionally, %L will be replaced with the conflict marker size (see below)\&.
1576 The merge driver is expected to leave the result of the merge in the file named with %A by overwriting it, and exit with zero status if it managed to merge them cleanly, or non\-zero if there were conflicts\&. When the driver crashes (e\&.g\&. killed by SEGV), it is expected to exit with non\-zero status that are higher than 128, and in such a case, the merge results in a failure (which is different from producing a conflict)\&.
1578 The \fBmerge\&.\fR*\&.\fBrecursive\fR variable specifies what other merge driver to use when the merge driver is called for an internal merge between common ancestors, when there are more than one\&. When left unspecified, the driver itself is used for both internal merge and the final merge\&.
1580 The merge driver can learn the pathname in which the merged result will be stored via placeholder %P\&. The conflict labels to be used for the common ancestor, local head and other head can be passed by using \fI%S\fR, \fI%X\fR and \*(Aq%Y` respectively\&.
1583 .it 1 an-trap
1584 .nr an-no-space-flag 1
1585 .nr an-break-flag 1
1587 .ps +1
1588 \fBconflict-marker-size\fR
1589 .RS 4
1591 This attribute controls the length of conflict markers left in the work tree file during a conflicted merge\&. Only a positive integer has a meaningful effect\&.
1593 For example, this line in \&.\fBgitattributes\fR can be used to tell the merge machinery to leave much longer (instead of the usual 7\-character\-long) conflict markers when merging the file \fBDocumentation/git\-merge\&.txt\fR results in a conflict\&.
1595 .if n \{\
1596 .RS 4
1599 Documentation/git\-merge\&.txt     conflict\-marker\-size=32
1601 .if n \{\
1605 .SS "Checking whitespace errors"
1607 .it 1 an-trap
1608 .nr an-no-space-flag 1
1609 .nr an-break-flag 1
1611 .ps +1
1612 \fBwhitespace\fR
1613 .RS 4
1615 The \fBcore\&.whitespace\fR configuration variable allows you to define what \fIdiff\fR and \fIapply\fR should consider whitespace errors for all paths in the project (See \fBgit-config\fR(1))\&. This attribute gives you finer control per path\&.
1618 .RS 4
1619 Notice all types of potential whitespace errors known to Git\&. The tab width is taken from the value of the
1620 \fBcore\&.whitespace\fR
1621 configuration variable\&.
1624 Unset
1625 .RS 4
1626 Do not notice anything as error\&.
1629 Unspecified
1630 .RS 4
1631 Use the value of the
1632 \fBcore\&.whitespace\fR
1633 configuration variable to decide what to notice as error\&.
1636 String
1637 .RS 4
1638 Specify a comma separated list of common whitespace problems to notice in the same format as the
1639 \fBcore\&.whitespace\fR
1640 configuration variable\&.
1643 .SS "Creating an archive"
1645 .it 1 an-trap
1646 .nr an-no-space-flag 1
1647 .nr an-break-flag 1
1649 .ps +1
1650 \fBexport-ignore\fR
1651 .RS 4
1653 Files and directories with the attribute \fBexport\-ignore\fR won\(cqt be added to archive files\&.
1656 .it 1 an-trap
1657 .nr an-no-space-flag 1
1658 .nr an-break-flag 1
1660 .ps +1
1661 \fBexport-subst\fR
1662 .RS 4
1664 If the attribute \fBexport\-subst\fR is set for a file then Git will expand several placeholders when adding this file to an archive\&. The expansion depends on the availability of a commit ID, i\&.e\&., if \fBgit-archive\fR(1) has been given a tree instead of a commit or a tag then no replacement will be done\&. The placeholders are the same as those for the option \fB\-\-pretty=format:\fR of \fBgit-log\fR(1), except that they need to be wrapped like this: \fB$Format:PLACEHOLDERS$\fR in the file\&. E\&.g\&. the string \fB$Format:\fR%H$ will be replaced by the commit hash\&. However, only one %(\fBdescribe\fR) placeholder is expanded per archive to avoid denial\-of\-service attacks\&.
1666 .SS "Packing objects"
1668 .it 1 an-trap
1669 .nr an-no-space-flag 1
1670 .nr an-break-flag 1
1672 .ps +1
1673 \fBdelta\fR
1674 .RS 4
1676 Delta compression will not be attempted for blobs for paths with the attribute \fBdelta\fR set to false\&.
1678 .SS "Viewing files in GUI tools"
1680 .it 1 an-trap
1681 .nr an-no-space-flag 1
1682 .nr an-break-flag 1
1684 .ps +1
1685 \fBencoding\fR
1686 .RS 4
1688 The value of this attribute specifies the character encoding that should be used by GUI tools (e\&.g\&. \fBgitk\fR(1) and \fBgit-gui\fR(1)) to display the contents of the relevant file\&. Note that due to performance considerations \fBgitk\fR(1) does not use this attribute unless you manually enable per\-file encodings in its options\&.
1690 If this attribute is not set or has an invalid value, the value of the \fBgui\&.encoding\fR configuration variable is used instead (See \fBgit-config\fR(1))\&.
1692 .SH "USING MACRO ATTRIBUTES"
1694 You do not want any end\-of\-line conversions applied to, nor textual diffs produced for, any binary file you track\&. You would need to specify e\&.g\&.
1696 .if n \{\
1697 .RS 4
1700 *\&.jpg \-text \-diff
1702 .if n \{\
1706 but that may become cumbersome, when you have many attributes\&. Using macro attributes, you can define an attribute that, when set, also sets or unsets a number of other attributes at the same time\&. The system knows a built\-in macro attribute, \fBbinary\fR:
1708 .if n \{\
1709 .RS 4
1712 *\&.jpg binary
1714 .if n \{\
1718 Setting the "binary" attribute also unsets the "text" and "diff" attributes as above\&. Note that macro attributes can only be "Set", though setting one might have the effect of setting or unsetting other attributes or even returning other attributes to the "Unspecified" state\&.
1719 .SH "DEFINING MACRO ATTRIBUTES"
1721 Custom macro attributes can be defined only in top\-level gitattributes files (\fB$GIT_DIR/info/attributes\fR, the \&.\fBgitattributes\fR file at the top level of the working tree, or the global or system\-wide gitattributes files), not in \&.\fBgitattributes\fR files in working tree subdirectories\&. The built\-in macro attribute "binary" is equivalent to:
1723 .if n \{\
1724 .RS 4
1727 [attr]binary \-diff \-merge \-text
1729 .if n \{\
1732 .SH "NOTES"
1734 Git does not follow symbolic links when accessing a \&.\fBgitattributes\fR file in the working tree\&. This keeps behavior consistent when the file is accessed from the index or a tree versus from the filesystem\&.
1735 .SH "EXAMPLES"
1737 If you have these three \fBgitattributes\fR file:
1739 .if n \{\
1740 .RS 4
1743 (in $GIT_DIR/info/attributes)
1745 a*      foo !bar \-baz
1747 (in \&.gitattributes)
1748 abc     foo bar baz
1750 (in t/\&.gitattributes)
1751 ab*     merge=filfre
1752 abc     \-foo \-bar
1753 *\&.c     frotz
1755 .if n \{\
1759 the attributes given to path \fBt/abc\fR are computed as follows:
1761 .RS 4
1762 .ie n \{\
1763 \h'-04' 1.\h'+01'\c
1765 .el \{\
1766 .sp -1
1767 .IP "  1." 4.2
1769 By examining
1770 \fBt/\&.gitattributes\fR
1771 (which is in the same directory as the path in question), Git finds that the first line matches\&.
1772 \fBmerge\fR
1773 attribute is set\&. It also finds that the second line matches, and attributes
1774 \fBfoo\fR
1776 \fBbar\fR
1777 are unset\&.
1780 .RS 4
1781 .ie n \{\
1782 \h'-04' 2.\h'+01'\c
1784 .el \{\
1785 .sp -1
1786 .IP "  2." 4.2
1788 Then it examines \&.\fBgitattributes\fR
1789 (which is in the parent directory), and finds that the first line matches, but
1790 \fBt/\&.gitattributes\fR
1791 file already decided how
1792 \fBmerge\fR,
1793 \fBfoo\fR
1795 \fBbar\fR
1796 attributes should be given to this path, so it leaves
1797 \fBfoo\fR
1799 \fBbar\fR
1800 unset\&. Attribute
1801 \fBbaz\fR
1802 is set\&.
1805 .RS 4
1806 .ie n \{\
1807 \h'-04' 3.\h'+01'\c
1809 .el \{\
1810 .sp -1
1811 .IP "  3." 4.2
1813 Finally it examines
1814 \fB$GIT_DIR/info/attributes\fR\&. This file is used to override the in\-tree settings\&. The first line is a match, and
1815 \fBfoo\fR
1816 is set,
1817 \fBbar\fR
1818 is reverted to unspecified state, and
1819 \fBbaz\fR
1820 is unset\&.
1823 As the result, the attributes assignment to \fBt/abc\fR becomes:
1825 .if n \{\
1826 .RS 4
1829 foo     set to true
1830 bar     unspecified
1831 baz     set to false
1832 merge   set to string value "filfre"
1833 frotz   unspecified
1835 .if n \{\
1838 .SH "SEE ALSO"
1840 \fBgit-check-attr\fR(1)\&.
1841 .SH "GIT"
1843 Part of the \fBgit\fR(1) suite