hgbook

view it/examples/tag.replace.it @ 792:5b79834be9a6

Minor changes and translation of code snippets for Ch.8.
author Giulio@puck
date Wed Aug 12 16:44:35 2009 +0200 (2009-08-12)
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 -->