django - tortoisehg ignore file is not ignoring *.pyc and *.db files -
i have ignore file:
syntax: glob *.pyc *.db mysite/app/migrations/** it ignoring migration files not pyc , db files. why this?
the usual answer have run hg add on .pyc , .db files. try running
$ hg locate "set:hgignore() , not ignored()" to see tracked files match .hgignore patterns. use
$ hg forget "set:hgignore() , not ignored()" to make mercurial forget them.
Comments
Post a Comment