hgbook
annotate es/examples/extdiff @ 336:7e52f0cc4516
changed es/hgext.tex
changed es/hook.tex
changed es/kdiff3.png
changed es/license.tex
changed es/mq-collab.tex
changed es/mq-ref.tex
changed es/mq.tex
changed es/note.png
changed es/tour-merge.tex
changed es/undo-manual-merge.dot
changed es/undo-non-tip.dot
files needed to compile the pdf version of the book.
changed es/hook.tex
changed es/kdiff3.png
changed es/license.tex
changed es/mq-collab.tex
changed es/mq-ref.tex
changed es/mq.tex
changed es/note.png
changed es/tour-merge.tex
changed es/undo-manual-merge.dot
changed es/undo-non-tip.dot
files needed to compile the pdf version of the book.
author | jerojasro@localhost |
---|---|
date | Sat Oct 18 15:44:41 2008 -0500 (2008-10-18) |
parents | |
children |
rev | line source |
---|---|
igor@333 | 1 #!/bin/bash |
igor@333 | 2 |
igor@333 | 3 echo '[extensions]' >> $HGRC |
igor@333 | 4 echo 'extdiff =' >> $HGRC |
igor@333 | 5 |
igor@333 | 6 hg init a |
igor@333 | 7 cd a |
igor@333 | 8 echo 'The first line.' > myfile |
igor@333 | 9 hg ci -Ama |
igor@333 | 10 echo 'The second line.' >> myfile |
igor@333 | 11 |
igor@333 | 12 #$ name: diff |
igor@333 | 13 |
igor@333 | 14 hg diff |
igor@333 | 15 |
igor@333 | 16 #$ name: extdiff |
igor@333 | 17 |
igor@333 | 18 hg extdiff |
igor@333 | 19 |
igor@333 | 20 #$ name: extdiff-ctx |
igor@333 | 21 |
igor@333 | 22 #$ ignore: ^\*\*\* a.* |
igor@333 | 23 |
igor@333 | 24 hg extdiff -o -NprcC5 |
igor@333 | 25 |
igor@333 | 26 #$ name: |
igor@333 | 27 |
igor@333 | 28 exit 0 |