tests/test-diffdir
author Vadim Gelfer <vadim.gelfer@gmail.com>
Thu, 16 Feb 2006 08:40:47 -0800
changeset 1726 56fb048b102c
parent 1723 fde8fb2cbede
child 1933 7544700fd931
permissions -rwxr-xr-x
prefix hook env var names with HG_. old names are still provided, but doc says they deprecated.

#!/bin/sh

hg init
touch a
hg add a
hg ci -m "a" -d "0 0"

echo 123 > b
hg add b
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
              -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"

hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
                     -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"

echo foo > a
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
              -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"