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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -