hgbook

annotate en/examples/ch04/diff @ 894:bc64bbc47c86

Move hgbook styles to a new folder and publish it statically.
author dukebody <dukebody@gmail.com>
date Mon Oct 26 12:18:05 2009 +0100 (2009-10-26)
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