hgbook
view it/examples/ch09-hook.ws.simple.it @ 1025:3013064edcf7
Adding french in translation list
author | Romain PELISSE <belaran@gmail.com> |
---|---|
date | Wed Apr 21 17:09:27 2010 +0200 (2010-04-21) |
parents | 713f0f69029a 5bbebcdfb533 |
children |
line source
1 <!-- BEGIN ch09/hook.ws.simple -->
2 <screen><prompt>$</prompt> <userinput>cat .hg/hgrc</userinput>
3 [hooks]
4 pretxncommit.spazio_bianco = hg export tip | (! egrep -q '^\+.*[ \t]$')
5 <prompt>$</prompt> <userinput>echo 'a ' > a</userinput>
6 <prompt>$</prompt> <userinput>hg commit -A -m "Collaudo con spazio bianco in coda."</userinput>
7 aggiungo a
8 transazione abortita!
9 ripristino completato
10 fallimento: l'hook pretxncommit.spazio_bianco รจ terminato con codice di stato 1
11 <prompt>$</prompt> <userinput>echo 'a' > a</userinput>
12 <prompt>$</prompt> <userinput>hg commit -A -m "Elimina lo spazio bianco in coda e riprova."</userinput>
13 </screen>
14 <!-- END ch09/hook.ws.simple -->