tests/test-update-renames
author Henrik Stuart <henrik.stuart@edlund.dk>
Wed, 07 Apr 2010 21:31:47 +0200
branchstable
changeset 10874 4f11978ae45d
permissions -rwxr-xr-x
copies: properly visit file context ancestors on working file contexts

#!/bin/sh

# test update logic when there are renames


# update with local changes across a file rename
hg init a
cd a
echo a > a
hg add a
hg ci -m a
hg mv a b
hg ci -m rename
echo b > b
hg ci -m change
hg up -q 0
echo c > a
hg up
cd ..