tests/test-1102
author Brodie Rao <brodie@bitheap.org>
Wed, 18 Aug 2010 10:53:52 -0400
branchstable
changeset 11987 3145951e50fe
parent 6671 938eddd76237
permissions -rwxr-xr-x
convert: use encoding.encoding instead of locale.getpreferredencoding() The latter may not return useful results in certain OS X environments.

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