tests/test-simple-update
author Emanuele Aina <em@nerd.ocracy.org>
Sat, 23 Jun 2007 22:26:22 -0500
changeset 4695 c3da7b6cc975
parent 3736 ad3d5b4367cb
permissions -rwxr-xr-x
purge: add the clean alias inspired by git-clean and svn-clean

#!/bin/sh

set -e

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m "1"
hg verify

hg clone . ../branch
cd ../branch
hg co
echo bar>>foo
hg commit -m "2"

cd ../test
hg pull ../branch
hg verify
hg co
cat foo
hg manifest --debug