mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-06 23:16:13 -05:00
Add git configuration templates to improve diff hunk header detection.
This is a follow-up to commit 9fc8ae4171
, which
missed two hunks from <https://issues.guix.gnu.org/50363>.
Reported by hackeryarn on #guix.
* .gitattributes, etc/git/gitconfig: New files.
Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
a2c01c48aa
commit
f8b10932c8
2 changed files with 8 additions and 0 deletions
3
.gitattributes
vendored
Normal file
3
.gitattributes
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
*.scm diff=scheme
|
||||||
|
*.scm.in diff=scheme
|
||||||
|
*.texi diff=texinfo
|
5
etc/git/gitconfig
Normal file
5
etc/git/gitconfig
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[diff "scheme"]
|
||||||
|
xfuncname = "^(\\(define.*)$"
|
||||||
|
|
||||||
|
[diff "texinfo"]
|
||||||
|
xfuncname = "^@node[[:space:]]+([^,]+).*$"
|
Loading…
Reference in a new issue