view es/examples/cmdref @ 763:4dd63ae7ba87

Remove background images for note/tip/warn
author Dongsheng Song <songdongsheng@live.cn>
date Tue, 31 Mar 2009 14:53:07 +0800
parents 04c08ad7e92e
children
line wrap: on
line source

#!/bin/bash

hg init diff
cd diff
cat > myfile.c <<EOF
int myfunc()
{
    return 1;
}
EOF
hg ci -Ama

sed -ie 's/return 1/return 10/' myfile.c

#$ name: diff-p

echo '[diff]' >> $HGRC
echo 'showfunc = False' >> $HGRC

hg diff

hg diff -p