tests/test-update-renames
author Martin Geisler <mg@lazybytes.net>
Sat, 19 Jun 2010 17:19:15 +0200
changeset 11400 e5b7841e0008
parent 10874 4f11978ae45d
permissions -rwxr-xr-x
i18n-zh_CN: split messages into paragraphs

#!/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 ..