hgbook

annotate en/examples/ch04/diff @ 1009:304c6a1758ae

French translation : ch06-collab.xml - 25% translated
author Frédéric Bouquet <youshe.jaalon@gmail.com>
date Sun Sep 20 13:09:33 2009 +0200 (2009-09-20)
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