16

I added .gitignore and another directory to my .gitignore file, but when I git status, .gitignore is still showing up!

I feel like I'm missing something really obvious.

Colleen
  • 23,899
  • 12
  • 45
  • 75

4 Answers4

35

As Carl Norum pointed out, files are not allowed to be tracked in order to be ignored. You will have to call

git rm --cached .gitignore

in order for it to actually be ignored.

But what you are trying to do is a very bad idea. The .gitignore file is supposed to be tracked, so it’s ensured that the stuff listed in there is actually ignored on all client machines. If that’s not the case, another dev might add a file to the repo that you wanted to ignore, and you will get into trouble.

Even running the command above might already cause trouble, as it will delete that file for every dev.

If for some reason you want to ignore stuff only on your machine (and you are sure that’s a good idea), you need to add that to .git/info/exclude. That file has the same function as .gitignore, but is not supposed to be shared with the other devs.

Community
  • 1
  • 1
Chronial
  • 66,706
  • 14
  • 93
  • 99
3

Your .gitignore file only ignores untracked files. Since you're presumably tracking your .gitignore file, you will see changes to it in the output of git status.

If you want to ignore something but you don't want to check it in, add it to your global git ignore file instead of the one checked into the repository.

Carl Norum
  • 219,201
  • 40
  • 422
  • 469
2

Possibly because you already added the .gitignore file in the past.

Note that git will not ignore a file that was already tracked before a rule was added to this file to ignore it. In such a case the file must be un-tracked, usually with git rm --cached filename

From https://help.github.com/articles/ignoring-files

sorcix
  • 64
  • 3
  • so here's the stupid question, though: I tried that, and git status-ed and it said "deleted: .gitignore"... if I commit that, will I delete other users' .gitignores? – Colleen Dec 20 '12 at 18:29
2

Stop tracking the .gitignore file:

How to stop tracking and ignore changes to a file in Git?

git rm --cached .gitignore 
Community
  • 1
  • 1
Layton Everson
  • 1,148
  • 9
  • 18
  • so here's the stupid question, though: I tried that, and git status-ed and it said "deleted: .gitignore"... if I commit that, will I delete other users' .gitignores? – Colleen Dec 20 '12 at 18:29
  • It shouldn't. You removed it from your repository, not your file system. The remote should not be tracking it either. If it is, you will need to run that command on your remote or every body using the repo would share .gitignore file. – Layton Everson Dec 20 '12 at 18:35