Differences between revisions 2 and 3
Revision 2 as of 2011-08-01 10:07:59
Size: 583
Comment:
Revision 3 as of 2012-06-20 16:03:20
Size: 582
Editor: 93-172-104-238
Comment: spelling
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
=== Don't commit code marked otherwhise === === Don't commit code marked otherwise ===

Some useful examples of Hooks. See also http://hgbook.red-bean.com/read/handling-repository-events-with-hooks.html

Don't commit code marked otherwise

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\(\).*$')

UsefulHooks (last edited 2012-06-20 16:03:20 by 93-172-104-238)