Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I ignore files locally without polluting the global git config for everyone else? I have untracked files that are spam in my git status but I don't want to commit git config changes for every single little random untracked file I have in my local branches.

share|improve this question

3 Answers

up vote 106 down vote accepted

gitignore:

Patterns which are specific to a particular repository but which do not need to be shared with other related repositories (e.g., auxiliary files that live inside the repository but are specific to one user's workflow) should go into the $GIT_DIR/info/exclude file.

The .git/info/exclude file has the same format as any .gitignore file. You can also set core.excludesfile to the name of a file containing global patterns.

Note on $GIT_DIR: This is a notation used all over the git manual simply to indicate the path to the git repository. If the environment variable is set, then it will override the location of whichever repo you're in, which probably isn't what you want.

share|improve this answer
What's $GIT_DIR, I can set that to whatever I want in my .bash_profile? I don't seem to have a default value for it. – Bjorn Tipling Nov 18 '09 at 1:41
If GIT_DIR is undefined it's just the path to the .git repository. – Josh Lee Nov 18 '09 at 1:42
5  
apphacker: I doubt that's what you want to do. That makes any git command to refer to the repository stored in ~/.git. GIT_DIR in this answer is a placeholder referring to the directory your repository's stored in. – Jefromi Nov 18 '09 at 1:51
1  
Big upvote because I don't find this info/exclude solution anywhere else. – Craig Hooghiem Jan 28 at 20:49
4  
As a note, make sure to run git update-index --assume-unchanged [<file>...] after making the addition to the exclude file. The changes won't be picked up until then. – Sardine Mar 30 at 16:05
show 2 more comments

If you need to ignore local changes to tracked files (we have that with local modifications to config files), use git update-index --assume-unchanged [<file>...].

share|improve this answer
This is the only one that works! Thanks. – ajkochanowicz Mar 26 at 16:32
Just to note, I added a file to $GIT_DIR/info/exclude (e.g., my-file.php) and then had to run git update-index --assume-unchanged my-file.php for it to start being ignored. Thanks for the tip! – Sardine Mar 30 at 16:04

You have several options:

  • Leave a dirty (or uncommitted) .gitignore file in your working dir (or apply it automatically using topgit or some other such patch tool).
  • Put the excludes in your $GIT_DIR/info/exclude file, if this is specific to one tree.
  • Run git config --global core.excludesfile ~/.gitignore and add patterns to your ~/.gitignore. This option applies if you want to ignore certain patterns across all trees. I use this for .pyc and .pyo files, for example.

Also, make sure you are using patterns and not explicitly enumerating files, when applicable.

share|improve this answer
7  
I think you need git config --global to set the option globally. – Josh Lee Nov 18 '09 at 1:50
Indeed, thanks! – Emil Sit Nov 18 '09 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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