hgbook
view ja/examples/hook.simple.init.out @ 992:8b0f1e2984d0
French translation : sync with original ch04-concepts
author | Frédéric Bouquet <youshe.jaalon@gmail.com> |
---|---|
date | Fri Sep 11 14:30:20 2009 +0200 (2009-09-11) |
parents | |
children |
line source
1 $ \textbf{hg init hook-test}
2 $ \textbf{cd hook-test}
3 $ \textbf{echo '[hooks]' >> .hg/hgrc}
4 $ \textbf{echo 'commit = echo committed $HG_NODE' >> .hg/hgrc}
5 $ \textbf{cat .hg/hgrc}
6 [hooks]
7 commit = echo committed $HG_NODE
8 $ \textbf{echo a > a}
9 $ \textbf{hg add a}
10 $ \textbf{hg commit -m 'testing commit hook'}
11 committed