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.
|
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. |
|||||||||
|
|
The solution mentioned in ".gitignore file not ignoring" is a bit extreme, but should work:
You also have other more fine-grained solution in the blog post "Making Git ignore already-tracked files":
|
||||
|
|
|
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
|
|||
|
|