hgbook

view es/examples/cmdref @ 461:67d34d8b6ba0

translated up to the "writing an in-process hook" section
author Javier Rojas <jerojasro@devnull.li>
date Tue Dec 23 12:57:21 2008 -0500 (2008-12-23)
parents
children
line source
1 #!/bin/bash
3 hg init diff
4 cd diff
5 cat > myfile.c <<EOF
6 int myfunc()
7 {
8 return 1;
9 }
10 EOF
11 hg ci -Ama
13 sed -ie 's/return 1/return 10/' myfile.c
15 #$ name: diff-p
17 echo '[diff]' >> $HGRC
18 echo 'showfunc = False' >> $HGRC
20 hg diff
22 hg diff -p