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

Is it possible to "refresh" a git repository after updating the gitignore file?

I just added more ignorations(?) to my gitignore and would like to remove stuff already in the repo matching the new file.

share|improve this question
Isn't this similar to stackoverflow.com/questions/1139762/gitignore-file-not-ignoring? – VonC Aug 16 '11 at 9:17
Could be, would that solution delete already commited files matching the new gitignore? – Christian Wattengård Aug 16 '11 at 9:19
2  
+1 for inventing the word "ignoration". – Aasmund Eldhuset Aug 17 '11 at 1:25

2 Answers

up vote 11 down vote accepted

The solution mentioned in ".gitignore file not ignoring" is a bit extreme, but should work:

git rm -r --cached .
git add .
git commit -m ".gitignore is now working"

You also have other more fine-grained solution in the blog post "Making Git ignore already-tracked files":

git rm --cached `git ls-files -i --exclude-standard`
share|improve this answer

I might misunderstand, but are you trying to delete files newly ignored or do you want to ignore new modifications to these files ? In this case, the thing is working.

If you want to delete ignored files previously commited, then use

git rm –cached `git ls-files -i –exclude-standard
git commit -m 'cleanup'
share|improve this answer

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.