hgbook

annotate en/examples/ch04/diff @ 1026:fd82814e9087

Copying xsl from the english version
author Romain PELISSE <belaran@gmail.com>
date Wed Apr 21 17:09:42 2010 +0200 (2010-04-21)
parents
children
rev   line source
bos@683 1 #!/bin/bash
bos@683 2
bos@683 3 hg init a
bos@683 4 cd a
bos@683 5 echo a > a
bos@683 6 hg ci -Ama
bos@683 7
bos@683 8 #$ name: rename.basic
bos@683 9
bos@683 10 hg rename a b
bos@683 11 hg diff
bos@683 12
bos@683 13 #$ name: rename.git
bos@683 14
bos@683 15 hg diff -g
bos@683 16
bos@683 17 #$ name:
bos@683 18
bos@683 19 hg revert -a
bos@683 20 rm b
bos@683 21
bos@683 22 #$ name: chmod
bos@683 23
bos@683 24 chmod +x a
bos@683 25 hg st
bos@683 26 hg diff
bos@683 27
bos@683 28 #$ name: chmod.git
bos@683 29
bos@683 30 hg diff -g