tests/test-rollback
author Matt Mackall <mpm@selenic.com>
Thu, 22 Mar 2007 23:37:44 -0500
changeset 4261 cd7b36b7869c
parent 2227 4f072bb06e89
child 5814 dd5a501cb97f
permissions -rwxr-xr-x
restructure changelog file appending - make appending code proper part of changelog with delayupdate/finalize - use simplified appender that tracks pending data in memory - eliminate old appendfile and helper classes - update addchangegroup to use new interface and reuse the existing changelog

#!/bin/sh

mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m "test" -d "1000000 0"
hg verify
hg parents
hg status
hg rollback
hg verify
hg parents
hg status