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?

link|improve this question
feedback

3 Answers

Put a / at the end of the directory name in your .gitignore file, i.e.

tmp/

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):

git rm -rf ./tmp/
git commit -m "untrack tmp dir"
mkdir tmp
echo tmp/ >> .gitignore
git add .gitignore ; git commit -m "add tmp/ to ignore list"

New files in that directory will not be tracked.

The --cached option to git rm only works on the index (pending changes more or less). It has no effect on the working tree or the status of what has been tracked or not.

link|improve this answer
I have that. Both the/dir/ and the/dir/* – 21312312 Jun 11 '11 at 16:47
@21312312: updated my answer. – Mat Jun 11 '11 at 16:57
Hey Mat, if I have something like /Media in different folders that I'd like to ignore, is that possible? So like /1/Media, /2/Media, all the way up to like 99? – Nic Jun 11 '11 at 17:22
feedback

Ignoring changes made to files while allowing them to exist is the exact purpose of .gitignore. So adding the files (or directories) to .gitignore is the only thing you have to do.

But your problem is that git is already tracking the files you want to ignore and .gitignore doesn't apply to tracked files. The only way to stop this tracking is to tell git to remove them. By using git rm --cached, you prevent git from deleting your local files, but any other repository getting your changes will apply the removal. I don't think there's a way to avoid that from your own repository. You must do something on the other repositories, or accept the files will be removed.

To prevent the removal on each other repository you can:

  • (obviously) backup the files somewhere, pull the changes and restore the files,
  • or also git rm --cached the files and commit before pulling your changes. Git will nicely merge the two removals without touching the already untracked files.
link|improve this answer
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 .keep file for instance, or a .gitignore file) within that directory.
Git don't version or track empty directory.

If you actually remove everything and add it to the .gitignore file (with a 'tmp/' line), like Mat suggests, then that directory will be removed when pushed to the remote repo.

link|improve this answer
yeah, I removed tmp/. Which is fine I guess. I added the info in a README and the files in that directory appear to be ignored now. However another file I want ignored (/index.php) isn't being ignored. it was previously tracked, and I need it to exist, but it won't need to be changed for awhile. Adding index.php to my .gitignore didn't help, how can I globally ignore changes to this file? – 21312312 Jun 11 '11 at 18:14
@21312312: did you git rm --cached index.php? That will remove it from the cache and shouldn't display it in the git status' since you have added it to the .gitignore`. – VonC Jun 11 '11 at 18:21
that removes it from the project though, doesn't it? I still want it in the project, just not tracked anymore – 21312312 Jun 12 '11 at 3:54
@21312312: no it won't remove it from the project. Only from the index of Git. The file itself won't be affected. See Michaël Witrant's answer which details that operation (git rm --cached) – VonC Jun 12 '11 at 7:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.