⇤ ← Revision 1 as of 2011-07-29 09:54:18
Size: 396
Comment: page with two useful hooks, hope there will be other contributions
|
Size: 583
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
Just add '''# NOCOMMIT''' in temporary sourcecode | |
Line 11: | Line 12: |
=== Don't commit breakpoints === {{{#!FORMAT python pretxncommit.pdb = hg export tip | (! egrep -q '^\+.*pdb\.set_trace\(\).*$')}}} |
Some useful examples of Hooks. See also http://hgbook.red-bean.com/read/handling-repository-events-with-hooks.html
Don't commit code marked otherwhise
Just add # NOCOMMIT in temporary sourcecode
pretxncommit.nocommit = hg export tip | (! egrep -q '^\+.*#[ \t]*NOCOMMIT.*$')
Check for whitespace
pretxncommit.whitespace = hg export tip | (! egrep -q '^\+.*[ \t]$')
Don't commit breakpoints
pretxncommit.pdb = hg export tip | (! egrep -q '^\+.*pdb\.set_trace\(\).*$')