annotate original/hgscm/templates/tricks_advanced/02 @ 244:4b97017259f9

Move the original site into a single folder to reduce clutter.
author Steve Losh <steve@stevelosh.com>
date Wed, 23 Sep 2009 20:05:13 -0400
parents hgscm/templates/tricks_advanced/02@fa0ed1574400
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
77
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
1 <strong>Fold commits</strong>
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
2 <pre>
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
3 $ hg qimport -r tip -n 'tofold.patch'
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
4 $ hg qpop
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
5 $ hg qimport -r tip
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
6 $ hg qfold 'tofold.patch'
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
7 $ hg qfinish -a
fb737a306703 templatetags: Add mercurial_tricks templatetag
David Soria Parra <dsp@php.net>
parents:
diff changeset
8 </pre>