Mercurial > hgbook
view en/examples/mq.guards @ 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 | 32bf9a5f22c0 |
children | 5225ec140003 |
line wrap: on
line source
#!/bin/bash echo '[extensions]' >> $HGRC echo 'hgext.mq =' >> $HGRC hg init a cd a #$ name: init hg qinit hg qnew hello.patch echo hello > hello hg add hello hg qrefresh hg qnew goodbye.patch echo goodbye > goodbye hg add goodbye hg qrefresh #$ name: qguard hg qguard #$ name: qguard.pos hg qguard +foo hg qguard #$ name: qguard.neg hg qguard hello.patch -quux hg qguard hello.patch #$ name: series cat .hg/patches/series #$ name: qselect.foo hg qpop -a hg qselect hg qselect foo hg qselect #$ name: qselect.cat cat .hg/patches/guards #$ name: qselect.qpush hg qpush -a #$ name: qselect.error hg qselect +foo #$ name: qselect.quux hg qselect quux hg qpop -a hg qpush -a #$ name: qselect.foobar hg qselect foo bar hg qpop -a hg qpush -a