When I use git diff
on a C# file, I see something like this:
diff --git a/foo.cs b/foo.cs
index ff61664..dd8a3e3 100644
--- a/foo.cs
+++ b/foo.c
Is there a way to customize it?
The configuration is defined in .gitattributes, section "Defining a custom hunk-header":
First, in
.gitattributes
, you would assign thediff
attribute for paths.
*.tex diff=tex
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 $GIT_DIR/config
file (or $HOME/.gitconfig
file) like this:
[diff "tex"]
xfuncname = "^(\\\\(sub)*section\\{.*)$"
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 sub followed by section followed by open brace, to the end of line.
There are a few built-in patterns to make this easier, and
tex
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.gitattributes
).
('csharp
' is part of the current built-in patterns)
Where does this excerpt come from?
Doesgit diff
somehow recognize the language syntax?
Initially, the algorithm was quite crude for function name detection :
See commit acb7257 (Git 1.3.0, April 2006, authored by Mark Wooding)
xdiff
: Show function names in hunk headers.The speed of the built-in diff generator is nice; but the function names shown by
diff -p
are really nice. And I hate having to choose.
So, we hackxdiff
to find the function names and print them.
The function names are parsed by a particularly stupid algorithm at the moment: it just tries to find a line in the 'old' file, from before the start of the hunk, whose first character looks plausible. Still, it's most definitely a start.
It was refined with get_func_line(), itself coming from commit f258475 (Git 1.5.3, Sept 2007, authored by Junio C Hamano (gitster))
You can see in that commit the test t/t4018-diff-funcname.sh, to Test custom diff function name patterns.
This makes "
diff -p
" hunk headers customizable viagitattributes
mechanism.
It is based on Johannes's earlier patch that allowed to define a single regexp to be used for everything.
The mechanism to arrive at the regexp that is used to define hunk header is the same as other use of
gitattributes
.
You assign an attribute,funcname
(because "diff -p
" typically uses the name of the function the patch is about as the hunk header), a simple string value.
This can be one of the names of built-in pattern (currently,java
" is defined) or a custom pattern name, to be looked up from the configuration file.
(in .gitattributes)
*.java funcname=java
*.perl funcname=perl
(in .git/config)
[funcname]
java = ... # ugly and complicated regexp to override the built-in one.
perl = ... # another ugly and complicated regexp to define a new one.
The current xfuncname
syntax is introduced in commit 45d9414, Git 1.6.0.3, Oct. 2008, authored by Brandon Casey
diff.*.xfuncname
which uses "extended" regex's for hunk header selectionCurrently, the hunk headers produced by '
diff -p
' are customizable by setting thediff.*.funcname
option in the config file. The 'funcname
' option takes a basic regular expression. This functionality was designed using the GNU regex library which, by default, allows using backslashed versions of some extended regular expression operators, even in Basic Regular Expression mode. For example, the following characters, when backslashed, are interpreted according to the extended regular expression rules:?
,+
, and|
.
As such, the builtinfuncname
patterns were created using some extended regular expression operators.
Other platforms which adhere more strictly to the POSIX spec do not interpret the backslashed extended RE operators in Basic Regular Expression mode. This causes the pattern matching for the builtin funcname patterns to fail on those platforms.
Introduce a new option '
xfuncname
' which uses extended regular expressions, and advertise it instead offuncname
.
Since most users are on GNU platforms, the majority offuncname
patterns are created and tested there.
Advertising onlyxfuncname
should help to avoid the creation of non-portable patterns which work with GNU regex but not elsewhere.
Additionally, the extended regular expressions may be less ugly and complicated compared to the basic RE since many common special operators do not need to be backslashed.
For example, the GNU Basic RE:
^[ ]*\\(\\(public\\|static\\).*\\)$
becomes the following Extended RE:
^[ ]*((public|static).*)$
Finally, It has been expanded with commit 14937c2, for git 1.7.8 (December 2011), authored by René Scharfe.
diff
: add option to show whole functions as contextAdd the option
-W
/--function-context
to git diff.
It is similar to the same option of git grep and expands the context of change hunks so that the whole surrounding function is shown.
This "natural" context can allow changes to be understood better.
It is still being tweaked in Git 2.15 (Q4 2017)
The built-in pattern to detect the "function header" for HTML did not match
<H1>..<H6>
elements without any attributes, which has been fixed.
Before 2.15, it was failing to match <h1>...</h1>
, while <h1 class="smth">...</h1>
matches.
See commit 9c03cac (23 Sep 2017) by Ilya Kantor (iliakan).
(Merged by Junio C Hamano -- gitster -- in commit 376a1da, 28 Sep 2017)
A pattern to detect function boundary is called a xfuncref
.
See commit a807200 (08 Nov 2019) by Łukasz Niemier (hauleth).
(Merged by Junio C Hamano -- gitster -- in commit 376e730, 01 Dec 2019), for Git 2.25 (Q1 2020)
userdiff: add Elixir to supported userdiff languages
Signed-off-by: Łukasz Niemier
Acked-by: Johannes Sixt
Adds support for
xfuncref
in Elixir language which is Ruby-like language that runs on Erlang Virtual Machine (BEAM).
And:
See commit d1b1384 (13 Dec 2019) by Ed Maste (emaste).
(Merged by Junio C Hamano -- gitster -- in commit ba6b662, 25 Dec 2019)
userdiff: remove empty subexpression from
elixir
regexSigned-off-by: Ed Maste
Reviewed-by: Jeff King
Helped-by: Johannes Sixt
The regex failed to compile on FreeBSD.
Also add
/* -- */
mark to separate the two regex entries given to thePATTERNS()
macro, to make it consistent with patterns for other content types.
The userdiff patterns for Markdown documents have been added with Git 2.27 (Q2 2020).
See commit 09dad92 (02 May 2020) by Ash Holland (sersorrel).
(Merged by Junio C Hamano -- gitster -- in commit dc4c393, 08 May 2020)
userdiff: support Markdown
Signed-off-by: Ash Holland
Acked-by: Johannes Sixt
It's typical to find Markdown documentation alongside source code, and having better context for documentation changes is useful; see also commit 69f9c87d4 ("
userdiff
: add support for Fountain documents", 2015-07-21, Git v2.6.0-rc0 -- merge listed in batch #1).
The pattern is based on the CommonMark specification 0.29, section 4.2 https://spec.commonmark.org/ but doesn't match empty headings, as seeing them in a hunk header is unlikely to be useful.
Only ATX headings are supported, as detecting setext headings would require printing the line before a pattern matches, or matching a multiline pattern. The word-diff pattern is the same as the pattern for HTML, because many Markdown parsers accept inline HTML.
With Git 2.30 (Q1 2021), the userdiff pattern learned to identify the function definition in POSIX shells and bash
.
See commit 2ff6c34 (22 Oct 2020) by Victor Engmark (l0b0).
(Merged by Junio C Hamano -- gitster -- in commit 292e53f, 02 Nov 2020)
userdiff: support Bash
Signed-off-by: Victor Engmark
Acked-by: Johannes Sixt
Support POSIX, bashism and mixed function declarations, all four compound command types, trailing comments and mixed whitespace.
Even though Bash allows locale-dependent characters in function names, only detect function names with characters allowed by POSIX.1-2017 for simplicity.
This should cover the vast majority of use cases, and produces system-agnostic results.Since a word pattern has to be specified, but there is no easy way to know the default word pattern, use the default
IFS
characters for a starter. A later patch can improve this.
gitattributes
now includes in its man page:
bash
suitable for source code in the Bourne-Again SHell language.
Covers a superset of POSIX shell function definitions.