Adding the missing ignore function to Mercurial
Answer:
The following script add the ignore function to the Mercurial
#!/usr/bin/env python
"""Ignore pathnames and patterns"""
import os
def ignore(ui, repo, *pathnames):
"""Ignore the given pathnames and patterns."""
outf = open(os.path.join(repo.root, ".hgignore"), "a")
for p in pathnames:
outf.write(p + "\n")
outf.close()
return
cmdtable = {
'ignore': (ignore, [], "hg ignore pathname [pathname]"),
}
Save the script as ignore.py (e.g. ~/hg/ignore.py), and add the following line in your own ~/.hgrc
[extensions]
ignore = ~/hg/ignore.py
Reference: http://dmoonc.com/blog/?p=266