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've placed .idea/ in both my ~/.gitignore_global and in my projects specific .gitignore file (and committed the later) but I still see the file as unstaged.

How can I really ignore these files?

I've done this:

git config --global core.excludesfile ~/.gitignore_global 

but it didn't help.

the filename is ok:

$ ls ~/.gitignore_global
/home/durrantm/.gitignore_global

enter image description here

share|improve this question

3 Answers

These files are added into the git repository already. Do the git rm --cached .idea then commit.

share|improve this answer
Just one note, to recursively remove files add -r option. git rm -r --cached .idea. – CrnaStena Apr 2 at 19:40

Maybe you also have to run a filter-branch, to completely wipe out the folder of your entire repository. On github you'll find a handy documentation for that thing.

share|improve this answer

Try git update-index --assume-unchanged

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.