Mercurial > hgbook
comparison es/examples/cmdref @ 432:04c08ad7e92e
Translated svgs dummy .tex towards building
author | Igor TAmara <igor@tamarapatino.org> |
---|---|
date | Sat, 18 Oct 2008 07:48:21 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
431:d13a05515acf | 432:04c08ad7e92e |
---|---|
1 #!/bin/bash | |
2 | |
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 | |
12 | |
13 sed -ie 's/return 1/return 10/' myfile.c | |
14 | |
15 #$ name: diff-p | |
16 | |
17 echo '[diff]' >> $HGRC | |
18 echo 'showfunc = False' >> $HGRC | |
19 | |
20 hg diff | |
21 | |
22 hg diff -p |