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?
I found the answer here http://stackoverflow.com/questions/1139762/gitignore-file-not-ignoring
Basically clean the index and cache, then ignore the file
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).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.