Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to "force" ignore a file?

marcoslhc October 2, 2013

I have this .gitignore:

django-countries/*
data.db
myproject/settings.py
myproject/wsgi.py
*.pyc

I need to ignore myproject/settings.py because they're different in the development environment and the production environment but git still tracks the file. I tried to ignore it in sourcetree but the option appears inactive. Any Ideas?

2 answers

1 accepted

1 vote
Answer accepted
marcoslhc October 3, 2013

I found the answer here http://stackoverflow.com/questions/1139762/gitignore-file-not-ignoring

Basically clean the index and cache, then ignore the file

0 votes
MB
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 2, 2013

You should check if your .gitignore file is being read at all or not. It could be that there exists a global gitignore or a custom-specified git ignore file, specified on the command line, when the git runs. However, try adding a line like:

myproject/settings2.py

to your .gitignore and of course create that file, just to make sure that .gitignore file is being respected.

If everything is ok with your .gitignore file, than it might be the case where the git has already tracked/staged/pushed some previous versions of that file, so you might want to remove it from the remote git repository too. For that purpose, try using:

git rm myproject/settings.py

(don't forget to backup your file first, since that command will remove the local copy of the file also). After that, push your changes and just create a new file myproject/settings.py and it shouldn't be tracked any more (according to .gitignore).

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events