Autogenerated manpages for v2.40.0-rc2
[git-manpages.git] / man5 / gitattributes.5
blobe898c48650c5620cdf79fd9db22b11d276df4a61
1 '\" t
2 .\"     Title: gitattributes
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 03/06/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.40.0.rc2
8 .\"  Language: English
9 .\"
10 .TH "GITATTRIBUTES" "5" "03/06/2023" "Git 2\&.40\&.0\&.rc2" "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 \fB\&.gitignore\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
106 instead)
109 When deciding what attributes are assigned to a path, Git consults \fB$GIT_DIR/info/attributes\fR file (which has the highest precedence), \fB\&.gitattributes\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 \fB\&.gitattributes\fR is from the path in question, the lower its precedence)\&. Finally global and system\-wide files are considered (they have the lowest precedence)\&.
111 When the \fB\&.gitattributes\fR file is missing from the work tree, the path in the index is used as a fall\-back\&. During checkout process, \fB\&.gitattributes\fR in the index is used and then the file in the working tree is used as a fall\-back\&.
113 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 \fB\&.gitattributes\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$(prefix)/etc/gitattributes\fR file\&.
115 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 \fB!\fR\&.
116 .SH "EFFECTS"
118 Certain operations by Git can be influenced by assigning particular attributes to a path\&. Currently, the following operations are attributes\-aware\&.
119 .SS "Checking\-out and checking\-in"
121 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\&.
123 .it 1 an-trap
124 .nr an-no-space-flag 1
125 .nr an-break-flag 1
127 .ps +1
128 \fBtext\fR
129 .RS 4
131 This attribute enables and controls end\-of\-line normalization\&. When a text file is normalized, its line endings are converted to LF in the repository\&. To control what line ending style is used in the working directory, use the \fBeol\fR attribute for a single file and the \fBcore\&.eol\fR configuration variable for all text files\&. Note that setting \fBcore\&.autocrlf\fR to \fBtrue\fR or \fBinput\fR overrides \fBcore\&.eol\fR (see the definitions of those options in \fBgit-config\fR(1))\&.
134 .RS 4
135 Setting the
136 \fBtext\fR
137 attribute on a path enables end\-of\-line normalization and marks the path as a text file\&. End\-of\-line conversion takes place without guessing the content type\&.
140 Unset
141 .RS 4
142 Unsetting the
143 \fBtext\fR
144 attribute on a path tells Git not to attempt any end\-of\-line conversion upon checkin or checkout\&.
147 Set to string value "auto"
148 .RS 4
149 When
150 \fBtext\fR
151 is set to "auto", the path is marked for automatic end\-of\-line conversion\&. If Git decides that the content is text, its line endings are converted to LF on checkin\&. When the file has been committed with CRLF, no conversion is done\&.
154 Unspecified
155 .RS 4
156 If the
157 \fBtext\fR
158 attribute is unspecified, Git uses the
159 \fBcore\&.autocrlf\fR
160 configuration variable to determine if the file should be converted\&.
163 Any other value causes Git to act as if \fBtext\fR has been left unspecified\&.
166 .it 1 an-trap
167 .nr an-no-space-flag 1
168 .nr an-break-flag 1
170 .ps +1
171 \fBeol\fR
172 .RS 4
174 This attribute sets a specific line\-ending style to be used in the working directory\&. This attribute has effect only if the \fBtext\fR attribute is set or unspecified, or if it is set to \fBauto\fR, the file is detected as text, and it is stored with LF endings in the index\&. Note that setting this attribute on paths which are in the index with CRLF line endings may make the paths to be considered dirty unless \fBtext=auto\fR is set\&. Adding the path to the index again will normalize the line endings in the index\&.
176 Set to string value "crlf"
177 .RS 4
178 This setting forces Git to normalize line endings for this file on checkin and convert them to CRLF when the file is checked out\&.
181 Set to string value "lf"
182 .RS 4
183 This setting forces Git to normalize line endings to LF on checkin and prevents conversion to CRLF when the file is checked out\&.
187 .it 1 an-trap
188 .nr an-no-space-flag 1
189 .nr an-break-flag 1
191 .ps +1
192 \fBBackwards compatibility with crlf attribute\fR
193 .RS 4
195 For backwards compatibility, the \fBcrlf\fR attribute is interpreted as follows:
197 .if n \{\
198 .RS 4
201 crlf            text
202 \-crlf           \-text
203 crlf=input      eol=lf
205 .if n \{\
211 .it 1 an-trap
212 .nr an-no-space-flag 1
213 .nr an-break-flag 1
215 .ps +1
216 \fBEnd-of-line conversion\fR
217 .RS 4
219 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\&.
221 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\&.
223 .if n \{\
224 .RS 4
227 [core]
228         autocrlf = true
230 .if n \{\
235 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\&.
237 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\&.
239 .if n \{\
240 .RS 4
243 *       text=auto
245 .if n \{\
250 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\&.
252 .if n \{\
253 .RS 4
256 *               text=auto
257 *\&.txt           text
258 *\&.vcproj        text eol=crlf
259 *\&.sh            text eol=lf
260 *\&.jpg           \-text
262 .if n \{\
266 .if n \{\
269 .RS 4
270 .it 1 an-trap
271 .nr an-no-space-flag 1
272 .nr an-break-flag 1
274 .ps +1
275 \fBNote\fR
276 .ps -1
279 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\&.
280 .sp .5v
283 From a clean working directory:
285 .if n \{\
286 .RS 4
289 $ echo "* text=auto" >\&.gitattributes
290 $ git add \-\-renormalize \&.
291 $ git status        # Show files that will be normalized
292 $ git commit \-m "Introduce end\-of\-line normalization"
294 .if n \{\
299 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\&.
301 .if n \{\
302 .RS 4
305 manual\&.pdf      \-text
307 .if n \{\
312 Conversely, text files that Git does not detect can have normalization enabled manually\&.
314 .if n \{\
315 .RS 4
318 weirdchars\&.txt  text
320 .if n \{\
325 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\&...
327 .RS 4
328 .ie n \{\
329 \h'-04'\(bu\h'+03'\c
331 .el \{\
332 .sp -1
333 .IP \(bu 2.3
335 \fIgit add\fR
336 itself does not touch the files in the work tree, the next checkout would, so the safety triggers;
339 .RS 4
340 .ie n \{\
341 \h'-04'\(bu\h'+03'\c
343 .el \{\
344 .sp -1
345 .IP \(bu 2.3
347 \fIgit apply\fR
348 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;
351 .RS 4
352 .ie n \{\
353 \h'-04'\(bu\h'+03'\c
355 .el \{\
356 .sp -1
357 .IP \(bu 2.3
359 \fIgit diff\fR
360 itself does not touch the files in the work tree, it is often run to inspect the changes you intend to next
361 \fIgit add\fR\&. To catch potential problems early, safety triggers\&.
365 .it 1 an-trap
366 .nr an-no-space-flag 1
367 .nr an-break-flag 1
369 .ps +1
370 \fBworking-tree-encoding\fR
371 .RS 4
373 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\&.
375 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\&.
377 Please note that using the \fBworking\-tree\-encoding\fR attribute may have a number of pitfalls:
379 .RS 4
380 .ie n \{\
381 \h'-04'\(bu\h'+03'\c
383 .el \{\
384 .sp -1
385 .IP \(bu 2.3
387 Alternative Git implementations (e\&.g\&. JGit or libgit2) and older Git versions (as of March 2018) do not support the
388 \fBworking\-tree\-encoding\fR
389 attribute\&. If you decide to use the
390 \fBworking\-tree\-encoding\fR
391 attribute in your repository, then it is strongly recommended to ensure that all clients working with the repository support it\&.
393 For example, Microsoft Visual Studio resources files (\fB*\&.rc\fR) or PowerShell script files (\fB*\&.ps1\fR) are sometimes encoded in UTF\-16\&. If you declare
394 \fB*\&.ps1\fR
395 as files as UTF\-16 and you add
396 \fBfoo\&.ps1\fR
397 with a
398 \fBworking\-tree\-encoding\fR
399 enabled Git client, then
400 \fBfoo\&.ps1\fR
401 will be stored as UTF\-8 internally\&. A client without
402 \fBworking\-tree\-encoding\fR
403 support will checkout
404 \fBfoo\&.ps1\fR
405 as UTF\-8 encoded file\&. This will typically cause trouble for the users of this file\&.
407 If a Git client that does not support the
408 \fBworking\-tree\-encoding\fR
409 attribute adds a new file
410 \fBbar\&.ps1\fR, then
411 \fBbar\&.ps1\fR
412 will be stored "as\-is" internally (in this example probably as UTF\-16)\&. A client with
413 \fBworking\-tree\-encoding\fR
414 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\&.
417 .RS 4
418 .ie n \{\
419 \h'-04'\(bu\h'+03'\c
421 .el \{\
422 .sp -1
423 .IP \(bu 2.3
425 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
426 \fBcore\&.checkRoundtripEncoding\fR
427 to make Git check the round trip encoding (see
428 \fBgit-config\fR(1))\&. SHIFT\-JIS (Japanese character set) is known to have round trip issues with UTF\-8 and is checked by default\&.
431 .RS 4
432 .ie n \{\
433 \h'-04'\(bu\h'+03'\c
435 .el \{\
436 .sp -1
437 .IP \(bu 2.3
439 Reencoding content requires resources that might slow down certain Git operations (e\&.g
440 \fIgit checkout\fR
442 \fIgit add\fR)\&.
445 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\&.
447 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\&.
449 .if n \{\
450 .RS 4
453 *\&.ps1           text working\-tree\-encoding=UTF\-16
455 .if n \{\
460 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\&.
462 .if n \{\
463 .RS 4
466 *\&.ps1           text working\-tree\-encoding=UTF\-16LE eol=CRLF
468 .if n \{\
473 You can get a list of all available encodings on your platform with the following command:
475 .if n \{\
476 .RS 4
479 iconv \-\-list
481 .if n \{\
486 If you do not know the encoding of a file, then you can use the \fBfile\fR command to guess the encoding:
488 .if n \{\
489 .RS 4
492 file foo\&.ps1
494 .if n \{\
500 .it 1 an-trap
501 .nr an-no-space-flag 1
502 .nr an-break-flag 1
504 .ps +1
505 \fBident\fR
506 .RS 4
508 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\&.
511 .it 1 an-trap
512 .nr an-no-space-flag 1
513 .nr an-break-flag 1
515 .ps +1
516 \fBfilter\fR
517 .RS 4
519 A \fBfilter\fR attribute can be set to a string value that names a filter driver specified in the configuration\&.
521 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 add \-\-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\&.
523 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\&.
525 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)\&.
527 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\&.
529 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\&.
531 Note: Whenever the clean filter is changed, the repo should be renormalized: $ git add \-\-renormalize \&.
533 For example, in \&.gitattributes, you would assign the \fBfilter\fR attribute for paths\&.
535 .if n \{\
536 .RS 4
539 *\&.c     filter=indent
541 .if n \{\
546 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")\&.
548 .if n \{\
549 .RS 4
552 [filter "indent"]
553         clean = indent
554         smudge = cat
556 .if n \{\
561 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\&.
563 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\&.
565 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:
567 .if n \{\
568 .RS 4
571 [filter "crypt"]
572         clean = openssl enc \&.\&.\&.
573         smudge = openssl enc \-d \&.\&.\&.
574         required
576 .if n \{\
581 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:
583 .if n \{\
584 .RS 4
587 [filter "p4"]
588         clean = git\-p4\-filter \-\-clean %f
589         smudge = git\-p4\-filter \-\-smudge %f
591 .if n \{\
596 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\&.
599 .it 1 an-trap
600 .nr an-no-space-flag 1
601 .nr an-break-flag 1
603 .ps +1
604 \fBLong Running Filter Process\fR
605 .RS 4
607 If the filter command (a string value) is defined via \fBfilter\&.<driver>\&.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)\&.
609 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"\&.
611 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\&.
613 .if n \{\
614 .RS 4
617 packet:          git> command=smudge
618 packet:          git> pathname=path/testfile\&.dat
619 packet:          git> 0000
620 packet:          git> CONTENT
621 packet:          git> 0000
623 .if n \{\
628 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\&.
630 .if n \{\
631 .RS 4
634 packet:          git< status=success
635 packet:          git< 0000
636 packet:          git< SMUDGED_CONTENT
637 packet:          git< 0000
638 packet:          git< 0000  # empty list, keep "status=success" unchanged!
640 .if n \{\
645 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\&.
647 .if n \{\
648 .RS 4
651 packet:          git< status=success
652 packet:          git< 0000
653 packet:          git< 0000  # empty content!
654 packet:          git< 0000  # empty list, keep "status=success" unchanged!
656 .if n \{\
661 In case the filter cannot or does not want to process the content, it is expected to respond with an "error" status\&.
663 .if n \{\
664 .RS 4
667 packet:          git< status=error
668 packet:          git< 0000
670 .if n \{\
675 If the filter experiences an error during processing, then it can send the status "error" after the content was (partially or completely) sent\&.
677 .if n \{\
678 .RS 4
681 packet:          git< status=success
682 packet:          git< 0000
683 packet:          git< HALF_WRITTEN_ERRONEOUS_CONTENT
684 packet:          git< 0000
685 packet:          git< status=error
686 packet:          git< 0000
688 .if n \{\
693 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\&.
695 .if n \{\
696 .RS 4
699 packet:          git< status=abort
700 packet:          git< 0000
702 .if n \{\
707 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\&.<driver>\&.required\fR flag, mimicking the behavior of the \fBfilter\&.<driver>\&.clean\fR / \fBfilter\&.<driver>\&.smudge\fR mechanism\&.
709 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\&.<driver>\&.required\fR flag Git will interpret that as error\&.
712 .it 1 an-trap
713 .nr an-no-space-flag 1
714 .nr an-break-flag 1
716 .ps +1
717 \fBDelay\fR
718 .RS 4
720 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\&.
722 .if n \{\
723 .RS 4
726 packet:          git> command=smudge
727 packet:          git> pathname=path/testfile\&.dat
728 packet:          git> can\-delay=1
729 packet:          git> 0000
730 packet:          git> CONTENT
731 packet:          git> 0000
732 packet:          git< status=delayed
733 packet:          git< 0000
735 .if n \{\
740 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\&.
742 .if n \{\
743 .RS 4
746 packet:          git> command=list_available_blobs
747 packet:          git> 0000
748 packet:          git< pathname=path/testfile\&.dat
749 packet:          git< pathname=path/otherfile\&.dat
750 packet:          git< 0000
751 packet:          git< status=success
752 packet:          git< 0000
754 .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 \{\
781 .it 1 an-trap
782 .nr an-no-space-flag 1
783 .nr an-break-flag 1
785 .ps +1
786 \fBExample\fR
787 .RS 4
789 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))\&.
791 Please note that you cannot use an existing \fBfilter\&.<driver>\&.clean\fR or \fBfilter\&.<driver>\&.smudge\fR command with \fBfilter\&.<driver>\&.process\fR because the former two use a different inter process communication protocol than the latter one\&.
794 .it 1 an-trap
795 .nr an-no-space-flag 1
796 .nr an-break-flag 1
798 .ps +1
799 \fBInteraction between checkin/checkout attributes\fR
800 .RS 4
802 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)\&.
804 In the check\-out codepath, the blob content is first converted with \fBtext\fR, and then \fBident\fR and fed to \fBfilter\fR\&.
807 .it 1 an-trap
808 .nr an-no-space-flag 1
809 .nr an-break-flag 1
811 .ps +1
812 \fBMerging branches with differing checkin/checkout attributes\fR
813 .RS 4
815 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\&.
817 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\&.
819 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\&.
821 .SS "Generating diff text"
823 .it 1 an-trap
824 .nr an-no-space-flag 1
825 .nr an-break-flag 1
827 .ps +1
828 \fBdiff\fR
829 .RS 4
831 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@@ \-k,l +n,m @@\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\&.
834 .RS 4
835 A path to which the
836 \fBdiff\fR
837 attribute is set is treated as text, even when they contain byte values that normally never appear in text files, such as NUL\&.
840 Unset
841 .RS 4
842 A path to which the
843 \fBdiff\fR
844 attribute is unset will generate
845 \fBBinary files differ\fR
846 (or a binary patch, if binary patches are enabled)\&.
849 Unspecified
850 .RS 4
851 A path to which the
852 \fBdiff\fR
853 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
854 \fBBinary files differ\fR\&.
857 String
858 .RS 4
859 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\&.
863 .it 1 an-trap
864 .nr an-no-space-flag 1
865 .nr an-break-flag 1
867 .ps +1
868 \fBDefining an external diff driver\fR
869 .RS 4
871 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\&...
873 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:
875 .if n \{\
876 .RS 4
879 [diff "jcdiff"]
880         command = j\-c\-diff
882 .if n \{\
887 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\&.
890 .it 1 an-trap
891 .nr an-no-space-flag 1
892 .nr an-break-flag 1
894 .ps +1
895 \fBSetting the internal diff algorithm\fR
896 .RS 4
898 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\&.
900 First, in \fB\&.gitattributes\fR, assign the \fBdiff\fR attribute for paths\&.
902 .if n \{\
903 .RS 4
906 *\&.json diff=<name>
908 .if n \{\
913 Then, define a "diff\&.<name>\&.algorithm" configuration to specify the diff algorithm, choosing from \fBmyers\fR, \fBpatience\fR, \fBminimal\fR, or \fBhistogram\fR\&.
915 .if n \{\
916 .RS 4
919 [diff "<name>"]
920   algorithm = histogram
922 .if n \{\
927 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\&.
928 .if n \{\
931 .RS 4
932 .it 1 an-trap
933 .nr an-no-space-flag 1
934 .nr an-break-flag 1
936 .ps +1
937 \fBNote\fR
938 .ps -1
941 If \fBdiff\&.<name>\&.command\fR is defined for path with the \fBdiff=<name>\fR attribute, it is executed as an external diff driver (see above), and adding \fBdiff\&.<name>\&.algorithm\fR has no effect, as the algorithm is not passed to the external diff driver\&.
942 .sp .5v
946 .it 1 an-trap
947 .nr an-no-space-flag 1
948 .nr an-break-flag 1
950 .ps +1
951 \fBDefining a custom hunk-header\fR
952 .RS 4
954 Each group of changes (called a "hunk") in the textual diff output is prefixed with a line of the form:
956 .if n \{\
957 .RS 4
960 @@ \-k,l +n,m @@ TEXT
962 .if n \{\
966 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\&.
968 First, in \&.gitattributes, you would assign the \fBdiff\fR attribute for paths\&.
970 .if n \{\
971 .RS 4
974 *\&.tex   diff=tex
976 .if n \{\
981 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:
983 .if n \{\
984 .RS 4
987 [diff "tex"]
988         xfuncname = "^(\e\e\e\e(sub)*section\e\e{\&.*)$"
990 .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 \fB\&.gitattributes\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 diff \-\-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 \{\
1322 A built\-in pattern is provided for all languages listed in the previous section\&.
1325 .it 1 an-trap
1326 .nr an-no-space-flag 1
1327 .nr an-break-flag 1
1329 .ps +1
1330 \fBPerforming text diffs of binary files\fR
1331 .RS 4
1333 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)\&.
1335 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\&.
1337 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):
1339 .if n \{\
1340 .RS 4
1343 [diff "jpg"]
1344         textconv = exif
1346 .if n \{\
1350 .if n \{\
1353 .RS 4
1354 .it 1 an-trap
1355 .nr an-no-space-flag 1
1356 .nr an-break-flag 1
1358 .ps +1
1359 \fBNote\fR
1360 .ps -1
1363 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 diff\fR and the \fBgit log\fR family of commands (i\&.e\&., log, whatchanged, show) will perform text conversion\&. \fBgit format\-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\&.
1364 .sp .5v
1367 Because text conversion can be slow, especially when doing a large number of them with \fBgit log \-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:
1369 .if n \{\
1370 .RS 4
1373 [diff "jpg"]
1374         textconv = exif
1375         cachetextconv = true
1377 .if n \{\
1382 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 update\-ref \-d refs/notes/textconv/jpg\fR (where "jpg" is the name of the diff driver, as in the example above)\&.
1385 .it 1 an-trap
1386 .nr an-no-space-flag 1
1387 .nr an-break-flag 1
1389 .ps +1
1390 \fBChoosing textconv versus external diff\fR
1391 .RS 4
1393 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\&.
1395 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\&.
1397 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:
1399 .RS 4
1400 .ie n \{\
1401 \h'-04' 1.\h'+01'\c
1403 .el \{\
1404 .sp -1
1405 .IP "  1." 4.2
1407 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)\&.
1410 .RS 4
1411 .ie n \{\
1412 \h'-04' 2.\h'+01'\c
1414 .el \{\
1415 .sp -1
1416 .IP "  2." 4.2
1418 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\&.
1421 .RS 4
1422 .ie n \{\
1423 \h'-04' 3.\h'+01'\c
1425 .el \{\
1426 .sp -1
1427 .IP "  3." 4.2
1429 Caching\&. Textconv caching can speed up repeated diffs, such as those you might trigger by running
1430 \fBgit log \-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 \fB\&.gitattributes\fR file:
1446 .if n \{\
1447 .RS 4
1450 *\&.ps \-diff
1452 .if n \{\
1457 This will cause Git to generate \fBBinary files differ\fR (or a binary patch, if binary patches are enabled) instead of a regular diff\&.
1459 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\&.*\&.binary\fR config option:
1461 .if n \{\
1462 .RS 4
1465 [diff "ps"]
1466   textconv = ps2ascii
1467   binary = true
1469 .if n \{\
1474 .SS "Performing a three\-way merge"
1476 .it 1 an-trap
1477 .nr an-no-space-flag 1
1478 .nr an-break-flag 1
1480 .ps +1
1481 \fBmerge\fR
1482 .RS 4
1484 The attribute \fBmerge\fR affects how three versions of a file are merged when a file\-level merge is necessary during \fBgit merge\fR, and other commands such as \fBgit revert\fR and \fBgit cherry\-pick\fR\&.
1487 .RS 4
1488 Built\-in 3\-way merge driver is used to merge the contents in a way similar to
1489 \fImerge\fR
1490 command of
1491 \fBRCS\fR
1492 suite\&. This is suitable for ordinary text files\&.
1495 Unset
1496 .RS 4
1497 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\&.
1500 Unspecified
1501 .RS 4
1502 By default, this uses the same built\-in 3\-way merge driver as is the case when the
1503 \fBmerge\fR
1504 attribute is set\&. However, the
1505 \fBmerge\&.default\fR
1506 configuration variable can name different merge driver to be used with paths for which the
1507 \fBmerge\fR
1508 attribute is unspecified\&.
1511 String
1512 .RS 4
1513 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"\&.
1517 .it 1 an-trap
1518 .nr an-no-space-flag 1
1519 .nr an-break-flag 1
1521 .ps +1
1522 \fBBuilt-in merge drivers\fR
1523 .RS 4
1525 There are a few built\-in low\-level merge drivers defined that can be asked for via the \fBmerge\fR attribute\&.
1527 text
1528 .RS 4
1529 Usual 3\-way file level merge for text files\&. Conflicted regions are marked with conflict markers
1530 \fB<<<<<<<\fR,
1531 \fB=======\fR
1533 \fB>>>>>>>\fR\&. The version from your branch appears before the
1534 \fB=======\fR
1535 marker, and the version from the merged branch appears after the
1536 \fB=======\fR
1537 marker\&.
1540 binary
1541 .RS 4
1542 Keep the version from your branch in the work tree, but leave the path in the conflicted state for the user to sort out\&.
1545 union
1546 .RS 4
1547 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\&.
1551 .it 1 an-trap
1552 .nr an-no-space-flag 1
1553 .nr an-break-flag 1
1555 .ps +1
1556 \fBDefining a custom merge driver\fR
1557 .RS 4
1559 The definition of a merge driver is done in the \fB\&.git/config\fR file, not in the \fBgitattributes\fR file, so strictly speaking this manual page is a wrong place to talk about it\&. However\&...
1561 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:
1563 .if n \{\
1564 .RS 4
1567 [merge "filfre"]
1568         name = feel\-free merge driver
1569         driver = filfre %O %A %B %L %P
1570         recursive = binary
1572 .if n \{\
1577 The \fBmerge\&.*\&.name\fR variable gives the driver a human\-readable name\&.
1579 The \(oqmerge\&.*\&.driver` variable\(cqs value is used to construct a command to run to merge ancestor\(cqs version (\fB%O\fR), current version (\fB%A\fR) and the other branches\(cq version (\fB%B\fR)\&. 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)\&.
1581 The merge driver is expected to leave the result of the merge in the file named with \fB%A\fR by overwriting it, and exit with zero status if it managed to merge them cleanly, or non\-zero if there were conflicts\&.
1583 The \fBmerge\&.*\&.recursive\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\&.
1585 The merge driver can learn the pathname in which the merged result will be stored via placeholder \fB%P\fR\&.
1588 .it 1 an-trap
1589 .nr an-no-space-flag 1
1590 .nr an-break-flag 1
1592 .ps +1
1593 \fBconflict-marker-size\fR
1594 .RS 4
1596 This attribute controls the length of conflict markers left in the work tree file during a conflicted merge\&. Only setting to the value to a positive integer has any meaningful effect\&.
1598 For example, this line in \fB\&.gitattributes\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\&.
1600 .if n \{\
1601 .RS 4
1604 Documentation/git\-merge\&.txt     conflict\-marker\-size=32
1606 .if n \{\
1611 .SS "Checking whitespace errors"
1613 .it 1 an-trap
1614 .nr an-no-space-flag 1
1615 .nr an-break-flag 1
1617 .ps +1
1618 \fBwhitespace\fR
1619 .RS 4
1621 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\&.
1624 .RS 4
1625 Notice all types of potential whitespace errors known to Git\&. The tab width is taken from the value of the
1626 \fBcore\&.whitespace\fR
1627 configuration variable\&.
1630 Unset
1631 .RS 4
1632 Do not notice anything as error\&.
1635 Unspecified
1636 .RS 4
1637 Use the value of the
1638 \fBcore\&.whitespace\fR
1639 configuration variable to decide what to notice as error\&.
1642 String
1643 .RS 4
1644 Specify a comma separated list of common whitespace problems to notice in the same format as the
1645 \fBcore\&.whitespace\fR
1646 configuration variable\&.
1649 .SS "Creating an archive"
1651 .it 1 an-trap
1652 .nr an-no-space-flag 1
1653 .nr an-break-flag 1
1655 .ps +1
1656 \fBexport-ignore\fR
1657 .RS 4
1659 Files and directories with the attribute \fBexport\-ignore\fR won\(cqt be added to archive files\&.
1662 .it 1 an-trap
1663 .nr an-no-space-flag 1
1664 .nr an-break-flag 1
1666 .ps +1
1667 \fBexport-subst\fR
1668 .RS 4
1670 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:%H$\fR will be replaced by the commit hash\&. However, only one \fB%(describe)\fR placeholder is expanded per archive to avoid denial\-of\-service attacks\&.
1672 .SS "Packing objects"
1674 .it 1 an-trap
1675 .nr an-no-space-flag 1
1676 .nr an-break-flag 1
1678 .ps +1
1679 \fBdelta\fR
1680 .RS 4
1682 Delta compression will not be attempted for blobs for paths with the attribute \fBdelta\fR set to false\&.
1684 .SS "Viewing files in GUI tools"
1686 .it 1 an-trap
1687 .nr an-no-space-flag 1
1688 .nr an-break-flag 1
1690 .ps +1
1691 \fBencoding\fR
1692 .RS 4
1694 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\&.
1696 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))\&.
1698 .SH "USING MACRO ATTRIBUTES"
1700 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\&.
1702 .if n \{\
1703 .RS 4
1706 *\&.jpg \-text \-diff
1708 .if n \{\
1713 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:
1715 .if n \{\
1716 .RS 4
1719 *\&.jpg binary
1721 .if n \{\
1726 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\&.
1727 .SH "DEFINING MACRO ATTRIBUTES"
1729 Custom macro attributes can be defined only in top\-level gitattributes files (\fB$GIT_DIR/info/attributes\fR, the \fB\&.gitattributes\fR file at the top level of the working tree, or the global or system\-wide gitattributes files), not in \fB\&.gitattributes\fR files in working tree subdirectories\&. The built\-in macro attribute "binary" is equivalent to:
1731 .if n \{\
1732 .RS 4
1735 [attr]binary \-diff \-merge \-text
1737 .if n \{\
1741 .SH "NOTES"
1743 Git does not follow symbolic links when accessing a \fB\&.gitattributes\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\&.
1744 .SH "EXAMPLES"
1746 If you have these three \fBgitattributes\fR file:
1748 .if n \{\
1749 .RS 4
1752 (in $GIT_DIR/info/attributes)
1754 a*      foo !bar \-baz
1756 (in \&.gitattributes)
1757 abc     foo bar baz
1759 (in t/\&.gitattributes)
1760 ab*     merge=filfre
1761 abc     \-foo \-bar
1762 *\&.c     frotz
1764 .if n \{\
1769 the attributes given to path \fBt/abc\fR are computed as follows:
1771 .RS 4
1772 .ie n \{\
1773 \h'-04' 1.\h'+01'\c
1775 .el \{\
1776 .sp -1
1777 .IP "  1." 4.2
1779 By examining
1780 \fBt/\&.gitattributes\fR
1781 (which is in the same directory as the path in question), Git finds that the first line matches\&.
1782 \fBmerge\fR
1783 attribute is set\&. It also finds that the second line matches, and attributes
1784 \fBfoo\fR
1786 \fBbar\fR
1787 are unset\&.
1790 .RS 4
1791 .ie n \{\
1792 \h'-04' 2.\h'+01'\c
1794 .el \{\
1795 .sp -1
1796 .IP "  2." 4.2
1798 Then it examines
1799 \fB\&.gitattributes\fR
1800 (which is in the parent directory), and finds that the first line matches, but
1801 \fBt/\&.gitattributes\fR
1802 file already decided how
1803 \fBmerge\fR,
1804 \fBfoo\fR
1806 \fBbar\fR
1807 attributes should be given to this path, so it leaves
1808 \fBfoo\fR
1810 \fBbar\fR
1811 unset\&. Attribute
1812 \fBbaz\fR
1813 is set\&.
1816 .RS 4
1817 .ie n \{\
1818 \h'-04' 3.\h'+01'\c
1820 .el \{\
1821 .sp -1
1822 .IP "  3." 4.2
1824 Finally it examines
1825 \fB$GIT_DIR/info/attributes\fR\&. This file is used to override the in\-tree settings\&. The first line is a match, and
1826 \fBfoo\fR
1827 is set,
1828 \fBbar\fR
1829 is reverted to unspecified state, and
1830 \fBbaz\fR
1831 is unset\&.
1834 As the result, the attributes assignment to \fBt/abc\fR becomes:
1836 .if n \{\
1837 .RS 4
1840 foo     set to true
1841 bar     unspecified
1842 baz     set to false
1843 merge   set to string value "filfre"
1844 frotz   unspecified
1846 .if n \{\
1850 .SH "SEE ALSO"
1852 \fBgit-check-attr\fR(1)\&.
1853 .SH "GIT"
1855 Part of the \fBgit\fR(1) suite