Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git status shows a file that I have listed explicitly in my .gitignore file

Tags:

git

I have the following line in my .gitignore file:

var/www/docs/.backroom/billing_info/inv.pl

but when I type 'git status' I am told the following:

#   modified:   var/www/docs/.backroom/billing_info/inv.pl

I dont understand how a file which is explicitly listed as an ignore pattern could be listed as modified when I want git to ignore it.

There are no lines starting with a ! in my .gitignore file

Here is my entire .gitignore file for reference: http://pastebin.com/Jw445Qd7

like image 838
Terrence Brannon Avatar asked May 24 '10 14:05

Terrence Brannon


1 Answers

That should only happen if inv.pl is already tracked (see gitignore man page).

Try (with git rm) a:

git rm --cached var/www/docs/.backroom/billing_info/inv.pl

If the file is already committed, see this SO answer.

like image 107
VonC Avatar answered Sep 30 '22 21:09

VonC