tests/test-1102
author Matt Mackall <mpm@selenic.com>
Wed, 13 Aug 2008 20:18:43 -0500
changeset 6899 56a7a54e074f
parent 6671 938eddd76237
permissions -rwxr-xr-x
store: simplify walking - fold in main walking function - eliminate recursion (especially recursive yielding!) - eliminate default args

#!/bin/sh

rm -rf a
hg init a
cd a
echo a > a
hg ci -Am0
hg tag t1 # 1
hg tag --remove t1 # 2

hg co 1
hg tag -r0 t1
hg tags