Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to get set up my GIT installation to globally ignore certain file types.

I have added a .gitignore file to my user root directory (Users/me/) and I have added the following line:

*.tmproj

But it is not ignoring this file time, any idea what I am doing wrong?

share|improve this question

4 Answers

up vote 60 down vote accepted

You need to set up your global core.excludesfile configuration file to point to this global ignore file.

E.g.

git config --global core.excludesfile '~/.gitignore'
share|improve this answer
I have done this, then I rmed the *.tmproj, resaved the file and it still shows up as an untracked change – Mild Fuzz Sep 7 '11 at 14:37
@MildFuzz: Do you mean that it's showing up in git status under Untracked files: ? This shouldn't happen, I've just done a quick test on my system and it works as expected for me. – Charles Bailey Sep 7 '11 at 14:43
Will it be because the file has been tracked in the past? – Mild Fuzz Sep 7 '11 at 14:45
1  
So long as it's not in your HEAD or your index it shouldn't make any difference whether the file was once tracked or not. It may be helpful if you add the output of git status, git config core.excludesfile to your question. – Charles Bailey Sep 7 '11 at 14:47
Since there are several levels of configuration (system, global, local), you should check to find out your "effective" core.excludesfile. Type: git config core.excludesfile. You may find that it refers to something like $HOME/.gitignore_global. – wilmoore May 14 '12 at 3:19
show 2 more comments

From here.

If you create a file in your repo named .gitignore git will use its rules when looking at files to commit. Note that git will not ignore a file that was already tracked before a rule was added to this file to ignore it. In such a case the file must be un-tracked, usually with :

git rm --cached filename

Is it your case ?

share|improve this answer
I am trying to ignore globally, which is not happening!! – Mild Fuzz Sep 7 '11 at 14:38

I am able to ignore a .tmproj file by including either .tmproj or *.tmproj in my /users/me/.gitignore-global file.

Note that the file name is .gitignore-global not .gitignore. It did not work by including .tmproj or *.tmproj in a file called .gitignore in the /users/me directory.

share|improve this answer
It doesn't matter what you call your global ignore file so long as it matches your core.excludesfile config. – Charles Bailey Sep 8 '11 at 12:24
Ah! Good point @CharlesBailey. However this may be something the writer may want to check. The reason the .tmproj file is not getting ignored may be because the user's excludesfile is not be .gitignore. – Sri Sankaran Sep 8 '11 at 13:56

You should create an exclude file for this. Check out this gist which is pretty self explanatory.

To address your question though, you may need to either de-index the .tmproj file (if you've already added it to the index) with git rm --cached path/to/.tmproj, or git add and commit your .gitignore file.

share|improve this answer
I am trying to do this globally, not just per repo – Mild Fuzz Sep 7 '11 at 14:36
Yeah, that's what I linked to in the gist. I was a little confused by the original question. Did you do the git rm --cached ? – Nic Sep 7 '11 at 14:39
yeah, tried that. It seems to me I have followed all the recommended advice! What am I missing? – Mild Fuzz Sep 7 '11 at 14:42
As suggested, I'd add your git status and excludes info to the question :) – Nic Sep 7 '11 at 15:49

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.