blob: e954a766a2f34b201de054ce27a6ee630441d4e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Make patches more descriptive
=============================
By default hunk headers of a patch will look like this:
@@ -1227,6 +1227,8 @@ authorization from the authors.
Which is not very usefull as it doesn't give a hint where the change
happened (except for the line number). To make those hunk headers more
descriptive, i.e.:
@@ -1227,6 +1227,8 @@ <struct name="HierarchyChange">
Add these 2 lines to your .git/config file:
[diff "xcb"]
xfuncname = "(<\\b(xcb|enum|event|request|struct|union)\\b.*>)"
For more background on this magic have a look at src/.gitattributes and
the man page gitattributes(5) chapter "Defining a custom hunk-header".
|