How can I setup a pre-commit hook , that will search for a string in the committed files and If found stop the commit ?

link|improve this question

69% accept rate
It seems to me that it would go against concept of decentralized repository. Your repository may be cloned to another machines with different systems, and your script may simply not work there. Maybe pre-push hook would be better? I'm interested to hear answer to your question. – Peter Štibraný Nov 12 '10 at 8:00
I have a central repository where people are pushing. I just need to make sure the commits I made are clean before I push them. – danip Nov 12 '10 at 8:24
Try to check selenic.com/mercurial/hgrc.5.html#hooks – Peter Štibraný Nov 12 '10 at 8:29
feedback

2 Answers

up vote 5 down vote accepted

Chapter 10 of the mercurial book covers this exactly:

$ cat .hg/hgrc
[hooks]
pretxncommit.whitespace = hg export tip | (! egrep -q '^\+.*[ \t]$')
$ echo 'a ' > a
$ hg commit -A -m 'test with trailing whitespace'
adding a
transaction abort!
rollback completed
abort: pretxncommit.whitespace hook exited with status 1
$ echo 'a' > a
$ hg commit -A -m 'drop trailing whitespace and try again'

In this example, we introduce a simple pretxncommit hook that checks for trailing whitespace. This hook is short, but not very helpful. It exits with an error status if a change adds a line with trailing whitespace to any file, but does not print any information that might help us to identify the offending file or line. It also has the nice property of not paying attention to unmodified lines; only lines that introduce new trailing whitespace cause problems.

Just change the regular expression from '^\+.*[ \t]$' to whatever string you're looking for.

link|improve this answer
OK, ofcourse I found that example by now but how does it work ? why do I need -> hg export tip and what is this returning (! egrep -q '^\+.*[ \t]$') ? – danip Nov 12 '10 at 19:40
feedback

Ry4an's answer is almost correct :) but you need to replace "hg export tip" with "hg diff".
tip is the last commited changeset, but are interested in local uncommited changes - so diff is what u need. for my needs i added the following to my hgrc

precommit.removeDebug = hg diff -S | grep -v '^-' | (! egrep '(var_dump)|(exit)|(print_r)')

the -S includes subrepos (maye not need, and may be still buggy).
the grep -v '^-' removes lines from the diff that indicate lines that were removed. i removed the -q so i at least have a idea what to remove, but unfortunatly this method cannot print you the file and linenumber of the occurence (as it is piped). maybe someone has a better way to do it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.