bos@682: #!/bin/bash bos@682: bos@682: echo '[extensions]' >> $HGRC bos@682: echo 'hgext.mq =' >> $HGRC bos@682: bos@682: #$ name: go bos@682: bos@682: hg init myrepo bos@682: cd myrepo bos@682: hg qinit bos@682: hg qnew bad.patch bos@682: echo a > a bos@682: hg add a bos@682: hg qrefresh bos@682: hg qdelete bad.patch bos@682: hg qpop bos@682: hg qdelete bad.patch bos@682: bos@682: #$ name: convert bos@682: bos@682: hg qnew good.patch bos@682: echo a > a bos@682: hg add a bos@682: hg qrefresh -m 'Good change' bos@689: hg qfinish tip bos@682: hg qapplied bos@682: hg tip --style=compact bos@682: bos@682: #$ name: import bos@682: bos@682: hg qimport -r tip bos@682: hg qapplied