view hgscm/templates/tricks/02 @ 77:fb737a306703

templatetags: Add mercurial_tricks templatetag mercurial_tricks displays a random 'trick' from the templates/tricks/ directory. The intention is to show the visitor various tricks around mercurial, how to do certain things during browsing.
author David Soria Parra <dsp@php.net>
date Fri, 20 Feb 2009 15:12:33 +0100
parents
children
line wrap: on
line source

<strong>Fold commits</strong>
<pre>
$ hg qimport -r tip -n 'tofold.patch'
$ hg qpop
$ hg qimport -r tip
$ hg qfold 'tofold.patch'
$ hg qfinish -a
</pre>