Mercurial > hgbook
view en/examples/hook.msglen @ 516:7e838acf7350
translated more paragraphs of collab to spanish
author | Igor TAmara <igor@tamarapatino.org> |
---|---|
date | Thu, 13 Nov 2008 23:09:45 -0500 |
parents | 914babdc99c8 |
children |
line wrap: on
line source
#!/bin/sh hg init a cd a echo '[hooks]' > .hg/hgrc echo 'pretxncommit.msglen = test `hg tip --template {desc} | wc -c` -ge 10' >> .hg/hgrc #$ name: go cat .hg/hgrc echo a > a hg add a hg commit -A -m 'too short' hg commit -A -m 'long enough'