I have a tmp directory in my git repo I'd like to still exist, but be ignored. I added it to .gitignore, but git status still tells me about changes to files in that directory. I tried git rm -r --cached, but that removes it from the remote repo. How can I stop tracking changes to this directory, but still allow it to exist? I also need to do this for 1 file, but changes to that also show up in git status after .gitignoreing them. What should I do?
|
| |||
|
feedback
|
|
Put a
If have tracked files inside that directory, you need to tell git to forget about them first (before you add the dir to the ignore list). Assuming you have nothing vital in there (i.e. that you can scratch it):
New files in that directory will not be tracked. The | |||||||
feedback
|
|
Ignoring changes made to files while allowing them to exist is the exact purpose of But your problem is that git is already tracking the files you want to ignore and To prevent the removal on each other repository you can:
| |||
|
feedback
|
|
Don't forget that, if you need tmp to still exist in a (local or remote) repo, you need to keep a placeholder (a If you actually remove everything and add it to the | |||||||||
feedback
|