Mercurial > hgbook
view en/examples/mq.guards @ 740:8b73656f95c9
Update file location in po files
author | Dongsheng Song <dongsheng.song@gmail.com> |
---|---|
date | Tue, 17 Mar 2009 10:47:54 +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