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?
|
feedback
|
|
Just got the answer from the IRC channel. Running command:
This removes everything from the index, then just run:
Commit it:
| |||||||||||||||||||
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: | |||||
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. | |||
|
feedback
|
|
i followed these steps
after that, git delete all files (*.swp in my case) that should be ignoring. | |||
|
feedback
|
|
another problem I had was I placed an inline comment.
this works
| |||
|
feedback
|
|
If the files are already in version control you need to remove them manually. | |||
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 ."?
Did the trick, since I had uncommitted local files that I didn't want to overwrite. | |||
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 :) | |||
|
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! | |||
|
feedback
|