Mercurial > hgbook
comparison es/examples/extdiff @ 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 echo '[extensions]' >> $HGRC | |
4 echo 'extdiff =' >> $HGRC | |
5 | |
6 hg init a | |
7 cd a | |
8 echo 'The first line.' > myfile | |
9 hg ci -Ama | |
10 echo 'The second line.' >> myfile | |
11 | |
12 #$ name: diff | |
13 | |
14 hg diff | |
15 | |
16 #$ name: extdiff | |
17 | |
18 hg extdiff | |
19 | |
20 #$ name: extdiff-ctx | |
21 | |
22 #$ ignore: ^\*\*\* a.* | |
23 | |
24 hg extdiff -o -NprcC5 | |
25 | |
26 #$ name: | |
27 | |
28 exit 0 |