Mercurial > hgbook
diff en/examples/extdiff @ 226:eef2171243e8
Document the extdiff extension.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Sat, 26 May 2007 11:52:18 -0700 |
parents | |
children | 9be45345065a |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/en/examples/extdiff Sat May 26 11:52:18 2007 -0700 @@ -0,0 +1,26 @@ +#!/bin/bash + +echo '[extensions]' >> $HGRC +echo 'extdiff =' >> $HGRC + +hg init a +cd a +echo 'The first line.' > myfile +hg ci -Ama +echo 'The second line.' >> myfile + +#$ name: diff + +hg diff + +#$ name: extdiff + +hg extdiff + +#$ name: extdiff-ctx + +hg extdiff -o -NprcC5 + +#$ name: + +exit 0