How can I setup a pre-commit hook , that will search for a string in the committed files and If found stop the commit ?
feedback
|
|
Chapter 10 of the mercurial book covers this exactly:
Just change the regular expression from | |||
feedback
|
|
Ry4an's answer is almost correct :)
but you need to replace "hg export tip" with "hg diff".
the -S includes subrepos (maye not need, and may be still buggy). | ||||
|
feedback
|