i'm using mercurial for my project in Django, and i need to ignore the manage.py. I've my .hgignore like this
syntax: glob
*.pyc
*.html~
*.js~
manage.py
settings_local.py
media/
when i make changes to settings_local.py it working fine, but when i change manage.py the .hgignore does not work
Thanks in advance!!
Is the manage.py in the root folder, and if so was it added to the repo before the ignore file was create (thus it is being tracked already). If the second is the case then just tell Hg to forget the file
hg forget manage.py
is the syntax I believe.