tests/test-tag
author Matt Mackall <mpm@selenic.com>
Fri, 07 Apr 2006 20:08:11 -0500
changeset 2052 c0b945c5df08
parent 1933 7544700fd931
child 2641 46182568b4ce
permissions -rwxr-xr-x
Added tag 0.8.1 for changeset 6a03cff2b0f5d30281e6addefe96b993582f2eac

#!/bin/sh

hg init
echo a > a
hg add a
hg commit -m "test" -d "1000000 0"
hg history
hg tag -d "1000000 0" "bleah"
hg history

echo foo >> .hgtags
hg tag -d "1000000 0" "bleah2" || echo "failed"
hg tag -d "1000000 0" -r 0 "bleah2" 1 || echo "failed"

hg revert .hgtags
hg tag -d "1000000 0" -r 0 "bleah0"
hg tag -l -d "1000000 0" "bleah1" 1

cat .hgtags
cat .hg/localtags

hg tag -l 'xx
newline'
hg tag -l 'xx:xx'
true