When including the line

*.py diff=python

in a local .gitattributes file, git diff produces nice labels for the different diff hunks of Python files (with the name of the function where the lines changes are, etc.).

Is is possible to ask git to use this diff mode for all Python files across all git projects? I tried to set a global ~/.gitattributes, but it is not used by local git repositories. Is there a more convenient method than initializing each new git project with a ln -s ~/.gitattributes?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

No, git only looks for attributes locally: .gitattributes and .git/info/attributes

link|improve this answer
feedback

To tell git to use ~/.gitattributes you need to put this in ~/.gitconfig:

[core]
  attributesfile = ~/.gitattributes
link|improve this answer
+1. Thanks. This is interesting, but doesn't this precludes the use of a local .gitattributes for local settings? I was wondering whether it would be possible to have some attributes common to all projects, that could be customized locally. – EOL Dec 18 '11 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.