tests/test-simple-update
author Matt Mackall <mpm@selenic.com>
Sat, 18 Oct 2008 04:26:06 -0500
changeset 7119 50f4e866d693
parent 3736 ad3d5b4367cb
permissions -rwxr-xr-x
dirstate: always add times to map as integers Fix bug spotted by Dov Feldstern

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