summaryrefslogtreecommitdiffstats
path: root/man5/gitattributes.5
blob: dfaa311a2e530ef0e0702a77e02c86da8ba15dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
'\" t
.\"     Title: gitattributes
.\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 2024-04-23
.\"    Manual: Git Manual
.\"    Source: Git 2.45.0.rc0.48.g10f1281498
.\"  Language: English
.\"
.TH "GITATTRIBUTES" "5" "2024\-04\-23" "Git 2\&.45\&.0\&.rc0\&.48\&.g1" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
gitattributes \- Defining attributes per path
.SH "SYNOPSIS"
.sp
$GIT_DIR/info/attributes, \&.gitattributes
.SH "DESCRIPTION"
.sp
A \fBgitattributes\fR file is a simple text file that gives \fBattributes\fR to pathnames\&.
.sp
Each line in \fBgitattributes\fR file is of form:
.sp
.if n \{\
.RS 4
.\}
.nf
pattern attr1 attr2 \&.\&.\&.
.fi
.if n \{\
.RE
.\}
.sp
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\&.
.sp
Each attribute can be in one of these states for a given path:
.PP
Set
.RS 4
The path has the attribute with special value "true"; this is specified by listing only the name of the attribute in the attribute list\&.
.RE
.PP
Unset
.RS 4
The path has the attribute with special value "false"; this is specified by listing the name of the attribute prefixed with a dash
\fB\-\fR
in the attribute list\&.
.RE
.PP
Set to a value
.RS 4
The path has the attribute with specified string value; this is specified by listing the name of the attribute followed by an equal sign
\fB=\fR
and its value in the attribute list\&.
.RE
.PP
Unspecified
.RS 4
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\&.
.RE
.sp
When more than one pattern matches the path, a later line overrides an earlier line\&. This overriding is done per attribute\&.
.sp
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:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
negative patterns are forbidden
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
patterns that match a directory do not recursively match paths inside that directory (so using the trailing\-slash
\fBpath/\fR
syntax is pointless in an attributes file; use
\fBpath/**\fR
instead)
.RE
.sp
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)\&.
.sp
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\&.
.sp
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\&.
.sp
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\&.
.SH "RESERVED BUILTIN_* ATTRIBUTES"
.sp
builtin_* is a reserved namespace for builtin attribute values\&. Any user defined attributes under this namespace will be ignored and trigger a warning\&.
.SS "\fBbuiltin_objectmode\fR"
.sp
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\&.
.SH "EFFECTS"
.sp
Certain operations by Git can be influenced by assigning particular attributes to a path\&. Currently, the following operations are attributes\-aware\&.
.SS "Checking\-out and checking\-in"
.sp
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\&.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBtext\fR
.RS 4
.sp
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)\&.
.PP
Set
.RS 4
Setting the
\fBtext\fR
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\&.
.RE
.PP
Unset
.RS 4
Unsetting the
\fBtext\fR
attribute on a path tells Git not to attempt any end\-of\-line conversion upon checkin or checkout\&.
.RE
.PP
Set to string value "auto"
.RS 4
When
\fBtext\fR
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\&.
.RE
.PP
Unspecified
.RS 4
If the
\fBtext\fR
attribute is unspecified, Git uses the
\fBcore\&.autocrlf\fR
configuration variable to determine if the file should be converted\&.
.RE
.sp
Any other value causes Git to act as if \fBtext\fR has been left unspecified\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBeol\fR
.RS 4
.sp
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\&.
.PP
Set to string value "crlf"
.RS 4
This setting converts the file\(cqs line endings in the working directory to CRLF when the file is checked out\&.
.RE
.PP
Set to string value "lf"
.RS 4
This setting uses the same line endings in the working directory as in the index when the file is checked out\&.
.RE
.PP
Unspecified
.RS 4
If the
\fBeol\fR
attribute is unspecified for a file, its line endings in the working directory are determined by the
\fBcore\&.autocrlf\fR
or
\fBcore\&.eol\fR
configuration variable (see the definitions of those options in
\fBgit-config\fR(1))\&. If
\fBtext\fR
is set but neither of those variables is, the default is
\fBeol=crlf\fR
on Windows and
\fBeol=lf\fR
on all other platforms\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBBackwards compatibility with crlf attribute\fR
.RS 4
.sp
For backwards compatibility, the \fBcrlf\fR attribute is interpreted as follows:
.sp
.if n \{\
.RS 4
.\}
.nf
crlf            text
\-crlf           \-text
crlf=input      eol=lf
.fi
.if n \{\
.RE
.\}
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBEnd-of-line conversion\fR
.RS 4
.sp
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\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
[core]
        autocrlf = true
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*       text=auto
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*               text=auto
*\&.txt           text
*\&.vcproj        text eol=crlf
*\&.sh            text eol=lf
*\&.jpg           \-text
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
.sp
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\&.
.sp .5v
.RE
.sp
From a clean working directory:
.sp
.if n \{\
.RS 4
.\}
.nf
$ echo "* text=auto" >\&.gitattributes
$ git add \-\-renormalize \&.
$ git status        # Show files that will be normalized
$ git commit \-m "Introduce end\-of\-line normalization"
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
manual\&.pdf      \-text
.fi
.if n \{\
.RE
.\}
.sp
.sp
Conversely, text files that Git does not detect can have normalization enabled manually\&.
.sp
.if n \{\
.RS 4
.\}
.nf
weirdchars\&.txt  text
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&...
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIgit add\fR
itself does not touch the files in the work tree, the next checkout would, so the safety triggers;
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIgit apply\fR
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;
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fIgit diff\fR
itself does not touch the files in the work tree, it is often run to inspect the changes you intend to next
\fIgit add\fR\&. To catch potential problems early, safety triggers\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBworking-tree-encoding\fR
.RS 4
.sp
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\&.
.sp
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\&.
.sp
Please note that using the \fBworking\-tree\-encoding\fR attribute may have a number of pitfalls:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Alternative Git implementations (e\&.g\&. JGit or libgit2) and older Git versions (as of March 2018) do not support the
\fBworking\-tree\-encoding\fR
attribute\&. If you decide to use the
\fBworking\-tree\-encoding\fR
attribute in your repository, then it is strongly recommended to ensure that all clients working with the repository support it\&.
.sp
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
\fB*\&.ps1\fR
as files as UTF\-16 and you add
\fBfoo\&.ps1\fR
with a
\fBworking\-tree\-encoding\fR
enabled Git client, then
\fBfoo\&.ps1\fR
will be stored as UTF\-8 internally\&. A client without
\fBworking\-tree\-encoding\fR
support will checkout
\fBfoo\&.ps1\fR
as UTF\-8 encoded file\&. This will typically cause trouble for the users of this file\&.
.sp
If a Git client that does not support the
\fBworking\-tree\-encoding\fR
attribute adds a new file
\fBbar\&.ps1\fR, then
\fBbar\&.ps1\fR
will be stored "as\-is" internally (in this example probably as UTF\-16)\&. A client with
\fBworking\-tree\-encoding\fR
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\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
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
\fBcore\&.checkRoundtripEncoding\fR
to make Git check the round trip encoding (see
\fBgit-config\fR(1))\&. SHIFT\-JIS (Japanese character set) is known to have round trip issues with UTF\-8 and is checked by default\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
Reencoding content requires resources that might slow down certain Git operations (e\&.g
\fIgit checkout\fR
or
\fIgit add\fR)\&.
.RE
.sp
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\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.ps1           text working\-tree\-encoding=UTF\-16
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.ps1           text working\-tree\-encoding=UTF\-16LE eol=CRLF
.fi
.if n \{\
.RE
.\}
.sp
.sp
You can get a list of all available encodings on your platform with the following command:
.sp
.if n \{\
.RS 4
.\}
.nf
iconv \-\-list
.fi
.if n \{\
.RE
.\}
.sp
.sp
If you do not know the encoding of a file, then you can use the \fBfile\fR command to guess the encoding:
.sp
.if n \{\
.RS 4
.\}
.nf
file foo\&.ps1
.fi
.if n \{\
.RE
.\}
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBident\fR
.RS 4
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBfilter\fR
.RS 4
.sp
A \fBfilter\fR attribute can be set to a string value that names a filter driver specified in the configuration\&.
.sp
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\&.
.sp
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\&.
.sp
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)\&.
.sp
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\&.
.sp
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\&.
.sp
Note: Whenever the clean filter is changed, the repo should be renormalized: $ git add \-\-renormalize \&.
.sp
For example, in \&.gitattributes, you would assign the \fBfilter\fR attribute for paths\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.c     filter=indent
.fi
.if n \{\
.RE
.\}
.sp
.sp
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")\&.
.sp
.if n \{\
.RS 4
.\}
.nf
[filter "indent"]
        clean = indent
        smudge = cat
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
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\&.
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[filter "crypt"]
        clean = openssl enc \&.\&.\&.
        smudge = openssl enc \-d \&.\&.\&.
        required
.fi
.if n \{\
.RE
.\}
.sp
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[filter "p4"]
        clean = git\-p4\-filter \-\-clean %f
        smudge = git\-p4\-filter \-\-smudge %f
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBLong Running Filter Process\fR
.RS 4
.sp
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)\&.
.sp
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"\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git> command=smudge
packet:          git> pathname=path/testfile\&.dat
packet:          git> 0000
packet:          git> CONTENT
packet:          git> 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git< status=success
packet:          git< 0000
packet:          git< SMUDGED_CONTENT
packet:          git< 0000
packet:          git< 0000  # empty list, keep "status=success" unchanged!
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git< status=success
packet:          git< 0000
packet:          git< 0000  # empty content!
packet:          git< 0000  # empty list, keep "status=success" unchanged!
.fi
.if n \{\
.RE
.\}
.sp
.sp
In case the filter cannot or does not want to process the content, it is expected to respond with an "error" status\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git< status=error
packet:          git< 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
If the filter experiences an error during processing, then it can send the status "error" after the content was (partially or completely) sent\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git< status=success
packet:          git< 0000
packet:          git< HALF_WRITTEN_ERRONEOUS_CONTENT
packet:          git< 0000
packet:          git< status=error
packet:          git< 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git< status=abort
packet:          git< 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBDelay\fR
.RS 4
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git> command=smudge
packet:          git> pathname=path/testfile\&.dat
packet:          git> can\-delay=1
packet:          git> 0000
packet:          git> CONTENT
packet:          git> 0000
packet:          git< status=delayed
packet:          git< 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git> command=list_available_blobs
packet:          git> 0000
packet:          git< pathname=path/testfile\&.dat
packet:          git< pathname=path/otherfile\&.dat
packet:          git< 0000
packet:          git< status=success
packet:          git< 0000
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
packet:          git> command=smudge
packet:          git> pathname=path/testfile\&.dat
packet:          git> 0000
packet:          git> 0000  # empty content!
packet:          git< status=success
packet:          git< 0000
packet:          git< SMUDGED_CONTENT
packet:          git< 0000
packet:          git< 0000  # empty list, keep "status=success" unchanged!
.fi
.if n \{\
.RE
.\}
.sp
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBExample\fR
.RS 4
.sp
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))\&.
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBInteraction between checkin/checkout attributes\fR
.RS 4
.sp
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)\&.
.sp
In the check\-out codepath, the blob content is first converted with \fBtext\fR, and then \fBident\fR and fed to \fBfilter\fR\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBMerging branches with differing checkin/checkout attributes\fR
.RS 4
.sp
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\&.
.sp
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\&.
.sp
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\&.
.RE
.SS "Generating diff text"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBdiff\fR
.RS 4
.sp
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\&.
.PP
Set
.RS 4
A path to which the
\fBdiff\fR
attribute is set is treated as text, even when they contain byte values that normally never appear in text files, such as NUL\&.
.RE
.PP
Unset
.RS 4
A path to which the
\fBdiff\fR
attribute is unset will generate
\fBBinary files differ\fR
(or a binary patch, if binary patches are enabled)\&.
.RE
.PP
Unspecified
.RS 4
A path to which the
\fBdiff\fR
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
\fBBinary files differ\fR\&.
.RE
.PP
String
.RS 4
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\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBDefining an external diff driver\fR
.RS 4
.sp
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\&...
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "jcdiff"]
        command = j\-c\-diff
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBSetting the internal diff algorithm\fR
.RS 4
.sp
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\&.
.sp
First, in \fB\&.gitattributes\fR, assign the \fBdiff\fR attribute for paths\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.json diff=<name>
.fi
.if n \{\
.RE
.\}
.sp
.sp
Then, define a "diff\&.<name>\&.algorithm" configuration to specify the diff algorithm, choosing from \fBmyers\fR, \fBpatience\fR, \fBminimal\fR, or \fBhistogram\fR\&.
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "<name>"]
  algorithm = histogram
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
.sp
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\&.
.sp .5v
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBDefining a custom hunk-header\fR
.RS 4
.sp
Each group of changes (called a "hunk") in the textual diff output is prefixed with a line of the form:
.sp
.if n \{\
.RS 4
.\}
.nf
@@ \-k,l +n,m @@ TEXT
.fi
.if n \{\
.RE
.\}
.sp
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\&.
.sp
First, in \&.gitattributes, you would assign the \fBdiff\fR attribute for paths\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.tex   diff=tex
.fi
.if n \{\
.RE
.\}
.sp
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "tex"]
        xfuncname = "^(\e\e\e\e(sub)*section\e\e{\&.*)$"
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.sp
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:
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBada\fR
suitable for source code in the Ada language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBbash\fR
suitable for source code in the Bourne\-Again SHell language\&. Covers a superset of POSIX shell function definitions\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBbibtex\fR
suitable for files with BibTeX coded references\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBcpp\fR
suitable for source code in the C and C++ languages\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBcsharp\fR
suitable for source code in the C# language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBcss\fR
suitable for cascading style sheets\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBdts\fR
suitable for devicetree (DTS) files\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBelixir\fR
suitable for source code in the Elixir language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBfortran\fR
suitable for source code in the Fortran language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBfountain\fR
suitable for Fountain documents\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBgolang\fR
suitable for source code in the Go language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBhtml\fR
suitable for HTML/XHTML documents\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBjava\fR
suitable for source code in the Java language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBkotlin\fR
suitable for source code in the Kotlin language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBmarkdown\fR
suitable for Markdown documents\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBmatlab\fR
suitable for source code in the MATLAB and Octave languages\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBobjc\fR
suitable for source code in the Objective\-C language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBpascal\fR
suitable for source code in the Pascal/Delphi language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBperl\fR
suitable for source code in the Perl language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBphp\fR
suitable for source code in the PHP language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBpython\fR
suitable for source code in the Python language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBruby\fR
suitable for source code in the Ruby language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBrust\fR
suitable for source code in the Rust language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBscheme\fR
suitable for source code in the Scheme language\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04'\(bu\h'+03'\c
.\}
.el \{\
.sp -1
.IP \(bu 2.3
.\}
\fBtex\fR
suitable for source code for LaTeX documents\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBCustomizing word diff\fR
.RS 4
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "tex"]
        wordRegex = "\e\e\e\e[a\-zA\-Z]+|[{}]|\e\e\e\e\&.|[^\e\e{}[:space:]]+"
.fi
.if n \{\
.RE
.\}
.sp
.sp
A built\-in pattern is provided for all languages listed in the previous section\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBPerforming text diffs of binary files\fR
.RS 4
.sp
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)\&.
.sp
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\&.
.sp
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):
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "jpg"]
        textconv = exif
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
.sp
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\&.
.sp .5v
.RE
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "jpg"]
        textconv = exif
        cachetextconv = true
.fi
.if n \{\
.RE
.\}
.sp
.sp
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)\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBChoosing textconv versus external diff\fR
.RS 4
.sp
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\&.
.sp
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\&.
.sp
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:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  1." 4.2
.\}
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)\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  2." 4.2
.\}
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\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  3." 4.2
.\}
Caching\&. Textconv caching can speed up repeated diffs, such as those you might trigger by running
\fBgit log \-p\fR\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBMarking files as binary\fR
.RS 4
.sp
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\&.
.sp
The simplest way to mark a file as binary is to unset the diff attribute in the \fB\&.gitattributes\fR file:
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.ps \-diff
.fi
.if n \{\
.RE
.\}
.sp
.sp
This will cause Git to generate \fBBinary files differ\fR (or a binary patch, if binary patches are enabled) instead of a regular diff\&.
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[diff "ps"]
  textconv = ps2ascii
  binary = true
.fi
.if n \{\
.RE
.\}
.sp
.RE
.SS "Performing a three\-way merge"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBmerge\fR
.RS 4
.sp
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\&.
.PP
Set
.RS 4
Built\-in 3\-way merge driver is used to merge the contents in a way similar to
\fImerge\fR
command of
\fBRCS\fR
suite\&. This is suitable for ordinary text files\&.
.RE
.PP
Unset
.RS 4
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\&.
.RE
.PP
Unspecified
.RS 4
By default, this uses the same built\-in 3\-way merge driver as is the case when the
\fBmerge\fR
attribute is set\&. However, the
\fBmerge\&.default\fR
configuration variable can name different merge driver to be used with paths for which the
\fBmerge\fR
attribute is unspecified\&.
.RE
.PP
String
.RS 4
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"\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBBuilt-in merge drivers\fR
.RS 4
.sp
There are a few built\-in low\-level merge drivers defined that can be asked for via the \fBmerge\fR attribute\&.
.PP
text
.RS 4
Usual 3\-way file level merge for text files\&. Conflicted regions are marked with conflict markers
\fB<<<<<<<\fR,
\fB=======\fR
and
\fB>>>>>>>\fR\&. The version from your branch appears before the
\fB=======\fR
marker, and the version from the merged branch appears after the
\fB=======\fR
marker\&.
.RE
.PP
binary
.RS 4
Keep the version from your branch in the work tree, but leave the path in the conflicted state for the user to sort out\&.
.RE
.PP
union
.RS 4
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\&.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBDefining a custom merge driver\fR
.RS 4
.sp
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\&...
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[merge "filfre"]
        name = feel\-free merge driver
        driver = filfre %O %A %B %L %P
        recursive = binary
.fi
.if n \{\
.RE
.\}
.sp
.sp
The \fBmerge\&.*\&.name\fR variable gives the driver a human\-readable name\&.
.sp
The \(oqmerge\&.*\&.driver` 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\(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, \fB%L\fR will be replaced with the conflict marker size (see below)\&.
.sp
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)\&.
.sp
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\&.
.sp
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\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBconflict-marker-size\fR
.RS 4
.sp
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\&.
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
Documentation/git\-merge\&.txt     conflict\-marker\-size=32
.fi
.if n \{\
.RE
.\}
.sp
.RE
.SS "Checking whitespace errors"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBwhitespace\fR
.RS 4
.sp
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\&.
.PP
Set
.RS 4
Notice all types of potential whitespace errors known to Git\&. The tab width is taken from the value of the
\fBcore\&.whitespace\fR
configuration variable\&.
.RE
.PP
Unset
.RS 4
Do not notice anything as error\&.
.RE
.PP
Unspecified
.RS 4
Use the value of the
\fBcore\&.whitespace\fR
configuration variable to decide what to notice as error\&.
.RE
.PP
String
.RS 4
Specify a comma separated list of common whitespace problems to notice in the same format as the
\fBcore\&.whitespace\fR
configuration variable\&.
.RE
.RE
.SS "Creating an archive"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBexport-ignore\fR
.RS 4
.sp
Files and directories with the attribute \fBexport\-ignore\fR won\(cqt be added to archive files\&.
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBexport-subst\fR
.RS 4
.sp
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\&.
.RE
.SS "Packing objects"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBdelta\fR
.RS 4
.sp
Delta compression will not be attempted for blobs for paths with the attribute \fBdelta\fR set to false\&.
.RE
.SS "Viewing files in GUI tools"
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBencoding\fR
.RS 4
.sp
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\&.
.sp
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))\&.
.RE
.SH "USING MACRO ATTRIBUTES"
.sp
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\&.
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.jpg \-text \-diff
.fi
.if n \{\
.RE
.\}
.sp
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
*\&.jpg binary
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.SH "DEFINING MACRO ATTRIBUTES"
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[attr]binary \-diff \-merge \-text
.fi
.if n \{\
.RE
.\}
.sp
.SH "NOTES"
.sp
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\&.
.SH "EXAMPLES"
.sp
If you have these three \fBgitattributes\fR file:
.sp
.if n \{\
.RS 4
.\}
.nf
(in $GIT_DIR/info/attributes)

a*      foo !bar \-baz

(in \&.gitattributes)
abc     foo bar baz

(in t/\&.gitattributes)
ab*     merge=filfre
abc     \-foo \-bar
*\&.c     frotz
.fi
.if n \{\
.RE
.\}
.sp
.sp
the attributes given to path \fBt/abc\fR are computed as follows:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  1." 4.2
.\}
By examining
\fBt/\&.gitattributes\fR
(which is in the same directory as the path in question), Git finds that the first line matches\&.
\fBmerge\fR
attribute is set\&. It also finds that the second line matches, and attributes
\fBfoo\fR
and
\fBbar\fR
are unset\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  2." 4.2
.\}
Then it examines
\fB\&.gitattributes\fR
(which is in the parent directory), and finds that the first line matches, but
\fBt/\&.gitattributes\fR
file already decided how
\fBmerge\fR,
\fBfoo\fR
and
\fBbar\fR
attributes should be given to this path, so it leaves
\fBfoo\fR
and
\fBbar\fR
unset\&. Attribute
\fBbaz\fR
is set\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 3.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  3." 4.2
.\}
Finally it examines
\fB$GIT_DIR/info/attributes\fR\&. This file is used to override the in\-tree settings\&. The first line is a match, and
\fBfoo\fR
is set,
\fBbar\fR
is reverted to unspecified state, and
\fBbaz\fR
is unset\&.
.RE
.sp
As the result, the attributes assignment to \fBt/abc\fR becomes:
.sp
.if n \{\
.RS 4
.\}
.nf
foo     set to true
bar     unspecified
baz     set to false
merge   set to string value "filfre"
frotz   unspecified
.fi
.if n \{\
.RE
.\}
.sp
.SH "SEE ALSO"
.sp
\fBgit-check-attr\fR(1)\&.
.SH "GIT"
.sp
Part of the \fBgit\fR(1) suite