tests/test-backwards-remove
author Matt Mackall <mpm@selenic.com>
Wed, 28 Jun 2006 17:06:56 -0500
changeset 2562 a020024c5870
parent 1933 7544700fd931
permissions -rwxr-xr-x
simplify make_filename, fix hg cat bug hg cat was using file-level rev/node ids for generating filename templates. This simplifies make_filename to only use changeset rev/node ids.

#!/bin/sh
hg init
echo This is file a1 > a
hg add a
hg commit -m "commit #0" -d "1000000 0"
ls
echo This is file b1 > b
hg add b
hg commit -m "commit #1" -d "1000000 0"
hg co 0
# B should disappear
ls