tests/test-diffdir
author Manpreet Singh <junkblocker@yahoo.com>
Wed, 24 Feb 2010 13:12:17 -0800
branchstable
changeset 10545 b9e4a67329cd
parent 4180 f80cf8b7bbd9
permissions -rwxr-xr-x
Updated contrib/vim/patchreview.* to version 0.2.1 1) adds a :DiffReview command to review code changes in the current workspace. 2) removes the need to have patchutils (specifically filterdiff) installed on the system by implementing patch extraction in pure vim script.

#!/bin/sh

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

echo 123 > b
hg add b
hg diff --nodates

hg diff --nodates -r tip

echo foo > a
hg diff --nodates

hg diff -r ""
hg diff -r tip -r ""

true