Mercurial > hgbook
view en/examples/results/tag.replace.out @ 744:1114da00d30e
Fix '<programlisting>' in ch02-tour-basic.xml
author | Dongsheng Song <dongsheng.song@gmail.com> |
---|---|
date | Wed, 18 Mar 2009 19:43:46 +0800 |
parents | 0d5935744f87 |
children | 4432ad34b8e5 |
line wrap: on
line source
<screen><prompt>$</prompt> <userinput>hg tag -r 1 v1.1</userinput> <prompt>$</prompt> <userinput>hg tags</userinput> tip v1.1 <prompt>$</prompt> <userinput>hg tag -r 2 v1.1</userinput> abort: tag 'v1.1' already exists (use -f to force) <prompt>$</prompt> <userinput>hg tag -f -r 2 v1.1</userinput> <prompt>$</prompt> <userinput>hg tags</userinput> tip v1.1 </screen>