-
-
Save perXautomatik/b29e8fe034ba12934e2de3db7cac9e5b to your computer and use it in GitHub Desktop.
An example .gitattributes file that will configure custom hunk header patterns for some common languages and file formats. See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stick this in your home directory and point your Global Git config at it by running: | |
# | |
# $ git config --global core.attributesfile ~/.gitattributes | |
# | |
# See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details | |
*.c diff=cpp | |
*.h diff=cpp | |
*.c++ diff=cpp | |
*.h++ diff=cpp | |
*.cpp diff=cpp | |
*.hpp diff=cpp | |
*.cc diff=cpp | |
*.hh diff=cpp | |
*.m diff=objc | |
*.mm diff=objc | |
*.cs diff=csharp | |
*.css diff=css | |
*.html diff=html | |
*.xhtml diff=html | |
*.ex diff=elixir | |
*.exs diff=elixir | |
*.go diff=golang | |
*.php diff=php | |
*.pl diff=perl | |
*.py diff=python | |
*.md diff=markdown | |
*.rb diff=ruby | |
*.rake diff=ruby | |
*.rs diff=rust | |
*.lisp diff=lisp | |
*.el diff=lisp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Additional manually-configured matchers you may want to add to your .gitconfig | |
[diff "rspec"] | |
xfuncname = "^[ \t]*((RSpec|describe|context|it|before|after|around|feature|scenario|background)[ \t].*)$" | |
[diff "swift"] | |
xfuncname = ^[ \t]*((class|func)[ \t].*)$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment