hgbook

view fr/examples/cmdref @ 945:5016d2b44950

Oops, overwrite some of my translation by adding Hugues works... Corrected.
author Romain PELISSE <belaran@gmail.com>
date Mon Feb 16 18:44:54 2009 +0100 (2009-02-16)
parents 1e013fbe35f7
children
line source
1 #!/bin/bash
3 hg init diff
4 cd diff
5 cat > myfile.c <<EOF
6 int myfunc()
7 {
8 return 1;
9 }
10 EOF
11 hg ci -Ama
13 sed -ie 's/return 1/return 10/' myfile.c
15 #$ name: diff-p
17 echo '[diff]' >> $HGRC
18 echo 'showfunc = False' >> $HGRC
20 hg diff
22 hg diff -p