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/>
7 .\" Source: Git 2.46.1.603.g94b60adee3
10 .TH "GITATTRIBUTES" "5" "2024-09-20" "Git 2\&.46\&.1\&.603\&.g94b60a" "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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 gitattributes \- Defining attributes per path
34 $GIT_DIR/info/attributes, \&.gitattributes
37 A \fBgitattributes\fR file is a simple text file that gives \fBattributes\fR to pathnames\&.
39 Each line in \fBgitattributes\fR file is of form:
45 pattern attr1 attr2 \&.\&.\&.
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\&.
53 Each attribute can be in one of these states for a given path:
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\&.
62 The path has the attribute with special value "false"; this is specified by listing the name of the attribute prefixed with a dash
64 in the attribute list\&.
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
71 and its value in the attribute list\&.
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\&.
79 When more than one pattern matches the path, a later line overrides an earlier line\&. This overriding is done per attribute\&.
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:
91 negative patterns are forbidden
102 patterns that match a directory do not recursively match paths inside that directory (so using the trailing\-slash
104 syntax is pointless in an attributes file; use
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 "RESERVED BUILTIN_* ATTRIBUTES"
118 builtin_* is a reserved namespace for builtin attribute values\&. Any user defined attributes under this namespace will be ignored and trigger a warning\&.
119 .SS "\fBbuiltin_objectmode\fR"
121 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 check\-attr builtin_objectmode \-\- <file>\fR\&. If the object is not in the index \fBgit check\-attr \-\-cached\fR will return unspecified\&.
124 Certain operations by Git can be influenced by assigning particular attributes to a path\&. Currently, the following operations are attributes\-aware\&.
125 .SS "Checking\-out and checking\-in"
127 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\&.
130 .nr an-no-space-flag 1
137 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)\&.
143 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\&.
150 attribute on a path tells Git not to attempt any end\-of\-line conversion upon checkin or checkout\&.
153 Set to string value "auto"
157 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\&.
164 attribute is unspecified, Git uses the
165 \fBcore\&.autocrlf\fR
166 configuration variable to determine if the file should be converted\&.
169 Any other value causes Git to act as if \fBtext\fR has been left unspecified\&.
173 .nr an-no-space-flag 1
180 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\&.
182 Set to string value "crlf"
184 This setting converts the file\(cqs line endings in the working directory to CRLF when the file is checked out\&.
187 Set to string value "lf"
189 This setting uses the same line endings in the working directory as in the index when the file is checked out\&.
196 attribute is unspecified for a file, its line endings in the working directory are determined by the
197 \fBcore\&.autocrlf\fR
200 configuration variable (see the definitions of those options in
201 \fBgit-config\fR(1))\&. If
203 is set but neither of those variables is, the default is
207 on all other platforms\&.
212 .nr an-no-space-flag 1
216 \fBBackwards compatibility with crlf attribute\fR
219 For backwards compatibility, the \fBcrlf\fR attribute is interpreted as follows:
235 .nr an-no-space-flag 1
239 \fBEnd-of-line conversion\fR
242 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\&.
244 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\&.
257 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\&.
259 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\&.
271 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\&.
279 *\&.vcproj text eol=crlf
292 .nr an-no-space-flag 1
300 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\&.
304 From a clean working directory:
310 $ echo "* text=auto" >\&.gitattributes
311 $ git add \-\-renormalize \&.
312 $ git status # Show files that will be normalized
313 $ git commit \-m "Introduce end\-of\-line normalization"
319 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\&.
331 Conversely, text files that Git does not detect can have normalization enabled manually\&.
337 weirdchars\&.txt text
343 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\&...\:
354 itself does not touch the files in the work tree, the next checkout would, so the safety triggers;
366 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;
378 itself does not touch the files in the work tree, it is often run to inspect the changes you intend to next
379 \fIgit add\fR\&. To catch potential problems early, safety triggers\&.
384 .nr an-no-space-flag 1
388 \fBworking-tree-encoding\fR
391 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\&.
393 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\&.
395 Please note that using the \fBworking\-tree\-encoding\fR attribute may have a number of pitfalls:
405 Alternative Git implementations (e\&.g\&. JGit or libgit2) and older Git versions (as of March 2018) do not support the
406 \fBworking\-tree\-encoding\fR
407 attribute\&. If you decide to use the
408 \fBworking\-tree\-encoding\fR
409 attribute in your repository, then it is strongly recommended to ensure that all clients working with the repository support it\&.
411 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
413 as files as UTF\-16 and you add
416 \fBworking\-tree\-encoding\fR
417 enabled Git client, then
419 will be stored as UTF\-8 internally\&. A client without
420 \fBworking\-tree\-encoding\fR
421 support will checkout
423 as UTF\-8 encoded file\&. This will typically cause trouble for the users of this file\&.
425 If a Git client that does not support the
426 \fBworking\-tree\-encoding\fR
427 attribute adds a new file
428 \fBbar\&.ps1\fR, then
430 will be stored "as\-is" internally (in this example probably as UTF\-16)\&. A client with
431 \fBworking\-tree\-encoding\fR
432 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\&.
443 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
444 \fBcore\&.checkRoundtripEncoding\fR
445 to make Git check the round trip encoding (see
446 \fBgit-config\fR(1))\&. SHIFT\-JIS (Japanese character set) is known to have round trip issues with UTF\-8 and is checked by default\&.
457 Reencoding content requires resources that might slow down certain Git operations (e\&.g
463 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\&.
465 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\&.
471 *\&.ps1 text working\-tree\-encoding=UTF\-16
477 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\&.
483 *\&.ps1 text working\-tree\-encoding=UTF\-16LE eol=crlf
489 You can get a list of all available encodings on your platform with the following command:
501 If you do not know the encoding of a file, then you can use the \fBfile\fR command to guess the encoding:
515 .nr an-no-space-flag 1
522 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\&.
526 .nr an-no-space-flag 1
533 A \fBfilter\fR attribute can be set to a string value that names a filter driver specified in the configuration\&.
535 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\&.
537 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\&.
539 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)\&.
541 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\&.
543 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\&.
545 Note: Whenever the clean filter is changed, the repo should be renormalized: $ git add \-\-renormalize \&.
547 For example, in \&.gitattributes, you would assign the \fBfilter\fR attribute for paths\&.
559 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")\&.
573 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\&.
575 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\&.
577 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:
584 clean = openssl enc \&.\&.\&.
585 smudge = openssl enc \-d \&.\&.\&.
592 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:
599 clean = git\-p4\-filter \-\-clean %f
600 smudge = git\-p4\-filter \-\-smudge %f
606 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\&.
610 .nr an-no-space-flag 1
614 \fBLong Running Filter Process\fR
617 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)\&.
619 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"\&.
621 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\&.
627 packet: git> command=smudge
628 packet: git> pathname=path/testfile\&.dat
637 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\&.
643 packet: git< status=success
645 packet: git< SMUDGED_CONTENT
647 packet: git< 0000 # empty list, keep "status=success" unchanged!
653 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\&.
659 packet: git< status=success
661 packet: git< 0000 # empty content!
662 packet: git< 0000 # empty list, keep "status=success" unchanged!
668 In case the filter cannot or does not want to process the content, it is expected to respond with an "error" status\&.
674 packet: git< status=error
681 If the filter experiences an error during processing, then it can send the status "error" after the content was (partially or completely) sent\&.
687 packet: git< status=success
689 packet: git< HALF_WRITTEN_ERRONEOUS_CONTENT
691 packet: git< status=error
698 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\&.
704 packet: git< status=abort
711 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\&.
713 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\&.
717 .nr an-no-space-flag 1
724 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\&.
730 packet: git> command=smudge
731 packet: git> pathname=path/testfile\&.dat
732 packet: git> can\-delay=1
736 packet: git< status=delayed
743 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\&.
749 packet: git> command=list_available_blobs
751 packet: git< pathname=path/testfile\&.dat
752 packet: git< pathname=path/otherfile\&.dat
754 packet: git< status=success
761 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\&.
767 packet: git> command=smudge
768 packet: git> pathname=path/testfile\&.dat
770 packet: git> 0000 # empty content!
771 packet: git< status=success
773 packet: git< SMUDGED_CONTENT
775 packet: git< 0000 # empty list, keep "status=success" unchanged!
783 .nr an-no-space-flag 1
790 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))\&.
792 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\&.
796 .nr an-no-space-flag 1
800 \fBInteraction between checkin/checkout attributes\fR
803 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)\&.
805 In the check\-out codepath, the blob content is first converted with \fBtext\fR, and then \fBident\fR and fed to \fBfilter\fR\&.
809 .nr an-no-space-flag 1
813 \fBMerging branches with differing checkin/checkout attributes\fR
816 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\&.
818 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\&.
820 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\&.
822 .SS "Generating diff text"
825 .nr an-no-space-flag 1
832 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\&.
838 attribute is set is treated as text, even when they contain byte values that normally never appear in text files, such as NUL\&.
845 attribute is unset will generate
846 \fBBinary files differ\fR
847 (or a binary patch, if binary patches are enabled)\&.
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 files differ\fR\&.
860 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\&.
865 .nr an-no-space-flag 1
869 \fBDefining an external diff driver\fR
872 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\&...\:
874 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:
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\&.
889 If the program is able to ignore certain changes (similar to \fBgit diff \-\-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\&.
893 .nr an-no-space-flag 1
897 \fBSetting the internal diff algorithm\fR
900 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\&.
902 First, in \fB\&.gitattributes\fR, assign the \fBdiff\fR attribute for paths\&.
914 Then, define a "diff\&.<name>\&.algorithm" configuration to specify the diff algorithm, choosing from \fBmyers\fR, \fBpatience\fR, \fBminimal\fR, or \fBhistogram\fR\&.
921 algorithm = histogram
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\&.
933 .nr an-no-space-flag 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\&.
947 .nr an-no-space-flag 1
951 \fBDefining a custom hunk-header\fR
954 Each group of changes (called a "hunk") in the textual diff output is prefixed with a line of the form:
960 @@ \-k,l +n,m @@ TEXT
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\&.
980 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:
987 xfuncname = "^(\e\e\e\e(sub)*section\e\e{\&.*)$"
993 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\&.
995 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:
1006 suitable for source code in the Ada language\&.
1011 \h'-04'\(bu\h'+03'\c
1018 suitable for source code in the Bourne\-Again SHell language\&. Covers a superset of POSIX shell function definitions\&.
1023 \h'-04'\(bu\h'+03'\c
1030 suitable for files with BibTeX coded references\&.
1035 \h'-04'\(bu\h'+03'\c
1042 suitable for source code in the C and C++ languages\&.
1047 \h'-04'\(bu\h'+03'\c
1054 suitable for source code in the C# language\&.
1059 \h'-04'\(bu\h'+03'\c
1066 suitable for cascading style sheets\&.
1071 \h'-04'\(bu\h'+03'\c
1078 suitable for devicetree (DTS) files\&.
1083 \h'-04'\(bu\h'+03'\c
1090 suitable for source code in the Elixir language\&.
1095 \h'-04'\(bu\h'+03'\c
1102 suitable for source code in the Fortran language\&.
1107 \h'-04'\(bu\h'+03'\c
1114 suitable for Fountain documents\&.
1119 \h'-04'\(bu\h'+03'\c
1126 suitable for source code in the Go language\&.
1131 \h'-04'\(bu\h'+03'\c
1138 suitable for HTML/XHTML documents\&.
1143 \h'-04'\(bu\h'+03'\c
1150 suitable for source code in the Java language\&.
1155 \h'-04'\(bu\h'+03'\c
1162 suitable for source code in the Kotlin language\&.
1167 \h'-04'\(bu\h'+03'\c
1174 suitable for Markdown documents\&.
1179 \h'-04'\(bu\h'+03'\c
1186 suitable for source code in the MATLAB and Octave languages\&.
1191 \h'-04'\(bu\h'+03'\c
1198 suitable for source code in the Objective\-C language\&.
1203 \h'-04'\(bu\h'+03'\c
1210 suitable for source code in the Pascal/Delphi language\&.
1215 \h'-04'\(bu\h'+03'\c
1222 suitable for source code in the Perl language\&.
1227 \h'-04'\(bu\h'+03'\c
1234 suitable for source code in the PHP language\&.
1239 \h'-04'\(bu\h'+03'\c
1246 suitable for source code in the Python language\&.
1251 \h'-04'\(bu\h'+03'\c
1258 suitable for source code in the Ruby language\&.
1263 \h'-04'\(bu\h'+03'\c
1270 suitable for source code in the Rust language\&.
1275 \h'-04'\(bu\h'+03'\c
1282 suitable for source code in the Scheme language\&.
1287 \h'-04'\(bu\h'+03'\c
1294 suitable for source code for LaTeX documents\&.
1299 .nr an-no-space-flag 1
1303 \fBCustomizing word diff\fR
1306 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:
1313 wordRegex = "\e\e\e\e[a\-zA\-Z]+|[{}]|\e\e\e\e\&.|[^\e\e{}[:space:]]+"
1319 A built\-in pattern is provided for all languages listed in the previous section\&.
1323 .nr an-no-space-flag 1
1327 \fBPerforming text diffs of binary files\fR
1330 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)\&.
1332 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\&.
1334 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):
1352 .nr an-no-space-flag 1
1360 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 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:
1372 cachetextconv = true
1378 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)\&.
1382 .nr an-no-space-flag 1
1386 \fBChoosing textconv versus external diff\fR
1389 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\&.
1391 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\&.
1393 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:
1403 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)\&.
1414 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\&.
1425 Caching\&. Textconv caching can speed up repeated diffs, such as those you might trigger by running
1426 \fBgit log \-p\fR\&.
1431 .nr an-no-space-flag 1
1435 \fBMarking files as binary\fR
1438 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\&.
1440 The simplest way to mark a file as binary is to unset the diff attribute in the \fB\&.gitattributes\fR file:
1452 This will cause Git to generate \fBBinary files differ\fR (or a binary patch, if binary patches are enabled) instead of a regular diff\&.
1454 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:
1468 .SS "Performing a three\-way merge"
1471 .nr an-no-space-flag 1
1478 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\&.
1482 Built\-in 3\-way merge driver is used to merge the contents in a way similar to
1486 suite\&. This is suitable for ordinary text files\&.
1491 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\&.
1496 By default, this uses the same built\-in 3\-way merge driver as is the case when the
1498 attribute is set\&. However, the
1499 \fBmerge\&.default\fR
1500 configuration variable can name different merge driver to be used with paths for which the
1502 attribute is unspecified\&.
1507 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"\&.
1512 .nr an-no-space-flag 1
1516 \fBBuilt-in merge drivers\fR
1519 There are a few built\-in low\-level merge drivers defined that can be asked for via the \fBmerge\fR attribute\&.
1523 Usual 3\-way file level merge for text files\&. Conflicted regions are marked with conflict markers
1527 \fB>>>>>>>\fR\&. The version from your branch appears before the
1529 marker, and the version from the merged branch appears after the
1536 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 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\&.
1546 .nr an-no-space-flag 1
1550 \fBDefining a custom merge driver\fR
1553 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\&...\:
1555 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:
1562 name = feel\-free merge driver
1563 driver = filfre %O %A %B %L %P
1570 The \fBmerge\&.*\&.name\fR variable gives the driver a human\-readable name\&.
1572 The \fBmerge\&.*\&.driver\fR variable\(cqs value is used to construct a command to run to common ancestor\(cqs version (\fB%O\fR), current version (\fB%A\fR) and the other branches\*(Aq 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, \fB%L\fR will be replaced with the conflict marker size (see below)\&.
1574 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\&. 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)\&.
1576 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\&.
1578 The merge driver can learn the pathname in which the merged result will be stored via placeholder \fB%P\fR\&. 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\&.
1582 .nr an-no-space-flag 1
1586 \fBconflict-marker-size\fR
1589 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\&.
1591 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\&.
1597 Documentation/git\-merge\&.txt conflict\-marker\-size=32
1603 .SS "Checking whitespace errors"
1606 .nr an-no-space-flag 1
1613 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\&.
1617 Notice all types of potential whitespace errors known to Git\&. The tab width is taken from the value of the
1618 \fBcore\&.whitespace\fR
1619 configuration variable\&.
1624 Do not notice anything as error\&.
1629 Use the value of the
1630 \fBcore\&.whitespace\fR
1631 configuration variable to decide what to notice as error\&.
1636 Specify a comma separated list of common whitespace problems to notice in the same format as the
1637 \fBcore\&.whitespace\fR
1638 configuration variable\&.
1641 .SS "Creating an archive"
1644 .nr an-no-space-flag 1
1651 Files and directories with the attribute \fBexport\-ignore\fR won\(cqt be added to archive files\&.
1655 .nr an-no-space-flag 1
1662 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\&.
1664 .SS "Packing objects"
1667 .nr an-no-space-flag 1
1674 Delta compression will not be attempted for blobs for paths with the attribute \fBdelta\fR set to false\&.
1676 .SS "Viewing files in GUI tools"
1679 .nr an-no-space-flag 1
1686 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\&.
1688 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))\&.
1690 .SH "USING MACRO ATTRIBUTES"
1692 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\&.
1698 *\&.jpg \-text \-diff
1704 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:
1716 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\&.
1717 .SH "DEFINING MACRO ATTRIBUTES"
1719 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:
1725 [attr]binary \-diff \-merge \-text
1732 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\&.
1735 If you have these three \fBgitattributes\fR file:
1741 (in $GIT_DIR/info/attributes)
1745 (in \&.gitattributes)
1748 (in t/\&.gitattributes)
1757 the attributes given to path \fBt/abc\fR are computed as follows:
1768 \fBt/\&.gitattributes\fR
1769 (which is in the same directory as the path in question), Git finds that the first line matches\&.
1771 attribute is set\&. It also finds that the second line matches, and attributes
1787 \fB\&.gitattributes\fR
1788 (which is in the parent directory), and finds that the first line matches, but
1789 \fBt/\&.gitattributes\fR
1790 file already decided how
1795 attributes should be given to this path, so it leaves
1813 \fB$GIT_DIR/info/attributes\fR\&. This file is used to override the in\-tree settings\&. The first line is a match, and
1817 is reverted to unspecified state, and
1822 As the result, the attributes assignment to \fBt/abc\fR becomes:
1831 merge set to string value "filfre"
1839 \fBgit-check-attr\fR(1)\&.
1842 Part of the \fBgit\fR(1) suite