tests/test-remove
author mpm@selenic.com
Tue, 23 Aug 2005 02:19:38 -0700
changeset 993 6f274afc05c7
parent 936 b62d1e738fa9
child 1570 6a104941d56a
permissions -rwxr-xr-x
Clean up some merge logic - rename mode to branch_merge - use explicit update mode - use negative mtime for updates that set mtime - expand some cryptic variable names - elaborate merge dirstate comments - remove redundant manifest lookup for non-merge case - remove impossible merge case - fix up test cases

#!/bin/sh

hg init a
cd a
echo a > foo
hg add foo
hg commit -m 1 -d "0 0"
rm foo
hg remove foo
hg commit -m 2 -d "0 0"

cd ..
hg clone a b