log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
hgbook
view es/examples/cmdref @ 788:1bd3a2ecb828
find changesets by author, revision, files, or words in the commit message
Wording.
author
Giulio@puck
date
Tue Aug 11 19:02:09 2009 +0200 (2009-08-11)
parents
children
line source
1
#!/bin/bash
2
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
12
13
sed -ie 's/return 1/return 10/' myfile.c
14
15
#$ name: diff-p
16
17
echo '[diff]' >> $HGRC
18
echo 'showfunc = False' >> $HGRC
19
20
hg diff
21
22
hg diff -p