tests/test-tag
changeset 401 af4848f83e68
child 749 7e4843b7efd2
equal deleted inserted replaced
400:8b067bde6679 401:af4848f83e68
       
     1 #!/bin/sh -x
       
     2 
       
     3 hg init
       
     4 echo a > a
       
     5 hg add a
       
     6 hg commit -t "test" -u test -d "0 0"
       
     7 hg history
       
     8 hg tag -u test -d "0 0" "bleah" 
       
     9 hg history
       
    10 
       
    11 echo foo >> .hgtags
       
    12 hg tag -u test -d "0 0" "bleah2" || echo "failed" 
       
    13