hgbook
view it/examples/tag.replace.it @ 917:93154fbaae9b
Merge with http://bitbucket.org/dukebody/hgbook-alqua/
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue Oct 27 21:31:06 2009 -0700 (2009-10-27) |
parents | |
children |
line source
1 <!-- BEGIN tag.replace -->
2 <screen><prompt>$</prompt> <userinput>hg tag -r 1 v1.1</userinput>
3 <prompt>$</prompt> <userinput>hg tags</userinput>
4 tip 4:2f0219ae190a
5 v1.1 1:87dee45bf6ec
6 <prompt>$</prompt> <userinput>hg tag -r 2 v1.1</userinput>
7 fallimento: l'etichetta 'v1.1' esiste giĆ (usate -f per forzare)
8 <prompt>$</prompt> <userinput>hg tag -f -r 2 v1.1</userinput>
9 <prompt>$</prompt> <userinput>hg tags</userinput>
10 tip 5:9a0bd94354ec
11 v1.1 2:35418c351c2b
12 </screen>
13 <!-- END tag.replace -->