I have an already initialized git repo that I added a .gitignore file to, how can I refresh the file index so the files I want ignored get ignored?

link|improve this question

74% accept rate
feedback

9 Answers

up vote 223 down vote accepted

Just got the answer from the IRC channel.

Running command:

git rm -r --cached .

This removes everything from the index, then just run:

git add .

Commit it:

git commit -m ".gitignore is now working"
link|improve this answer
22  
be aware to commit all your changes before, otherwise you will loose control on all the changed files – Hoang Pham Jan 13 '10 at 14:48
1  
This doesn't seem to stay on a push or a clean clone. any ideas? – BenB May 21 '10 at 6:02
2  
didn't work for me – Travis Webb Sep 27 '11 at 21:04
1  
@TravisWebb You would have to make sure you set up .gitignore first. Also I tend not to remove all files from the index, only the ones I need to by using Fileglobs such as *.o – Jason S Dec 27 '11 at 20:41
Does this break any continuity for the files I do want to keep tracked? – boomhauer Jan 7 at 17:47
show 1 more comment
feedback

To untrack a file that has already been added/initialized to your repository, ie stop tracking the file but not delete it from your system use: git rm --cached filename

link|improve this answer
2  
This was the perfect way to remove the couple of files I'd added, committed, but later realized didn't need to be tracked. After adding those files to .gitignore, I was able to do this and untrack them perfectly. – Andrew Larned Apr 8 '11 at 16:17
feedback

Yes - .gitignore system only ignores files not currently under version control from git. I.e. if you've already added a file called test.txt using git-add, then adding test.txt to .gitignore will still cause changes to test.txt to be tracked. You would have to git-rm test.txt first, commit that change. Only then will changes to test.txt be ignored.

link|improve this answer
feedback

i followed these steps

git rm -r --cached .
git add .
git reset HEAD

after that, git delete all files (*.swp in my case) that should be ignoring.

link|improve this answer
feedback

another problem I had was I placed an inline comment.

tmp/*   # ignore my tmp folder (this doesn't work)

this works

# ignore my tmp folder
tmp/
link|improve this answer
feedback

If the files are already in version control you need to remove them manually.

link|improve this answer
I tried git rm --cached and git reset HEAD both tools I'm fairly familiar with and just could get it from the repo. Success came from first rm --cached, then actually manually deleting it, committing the delete, then recreating it manually. And it's gone. – doublejosh Apr 17 at 23:17
feedback

Not knowing quite what the 'answer' command did, I ran it, much to my dismay. It recursively removes every file from your git repo.

Stackoverflow to the rescue... How to revert a "git rm -r ."?

git reset HEAD

Did the trick, since I had uncommitted local files that I didn't want to overwrite.

link|improve this answer
The git rm -r --cached . didn't work for me. Git was still claiming an my textmate project file was not being tracked even though .tmproj is in my global ignore file. Resetting my local repro like this worked, though. Actually I added the 'hard' option as in git reset --hard HEAD. That should have nearly the same effect in this case. – IAmNaN May 16 at 19:33
feedback

Remove trailing whitespace in .gitignore

Also, make sure you have no trailing whitespace in your .gitignore. I got to this question because I was searching for an answer, then I had a funny feeling I should open the editor instead of just cat'ing .gitignore. Removed a single extra space from the end and poof it works now :)

link|improve this answer
feedback

I have found a weird problem with .gitignore. Everything was in place and seemed correct. The only reason why my .gitignore was "ignored" was, that the line-ending was in Mac-Format (\r). So after saving the file with the correct line-ending (in vi using :set ff=unix) everything worked like a charm!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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