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?
|
Just got the answer from the IRC channel. First, commit any outstanding code changes, and then, run this command:
This removes everything from the index, then just run:
Commit it:
|
|||||||||||||||||||||
|
|
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: |
|||||||||||||
|
|
If you are trying to ignore changes to a file that's already tracked in the repository (e.g. a dev.properties file that you would need to change for your local environment but you would never want to check in these changes) than what you want to do is:
If you wanna start tracking changes again
|
|||||||||||||
|
|
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. |
|||
|
|
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 :) |
|||
|
i followed these steps
after that, git delete all files (*.swp in my case) that should be ignoring. |
|||
|
|
|
another problem I had was I placed an inline comment.
this works
|
|||
|
|
|
If the files are already in version control you need to remove them manually. |
|||
|
|
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 ."?
Did the trick, since I had uncommitted local files that I didn't want to overwrite. |
|||||
|
|
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! |
|||||||
|
|
Thanks to your answer, I was able to write this little one-liner to improve it. I ran it on my .gitignore and repo, and had no issues, but if anybody sees any glaring problems, please comment. This should
Note that you'll get a lot of |
||||
|
|
|
On my server linux server (not true on my local dev mac), directories are ignored as long as I don't add an asterisk:
I don't know why but it made me loose a couple of hours, so I wanted to share... |
||||
|
|
|
One other problem not mentioned here is if you've created your .gitignore in Windows notepad it can look like gibberish on other platforms as I found out. The key is to make sure you the encoding is set to ANSI in notepad, (or make the file on linux as I did). From my answer here: http://stackoverflow.com/a/11451916/406592 |
|||
|
|
protected by Neal Jul 6 '12 at 17:10
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
