Mercurial > hgbook
view en/examples/ch11/qdelete @ 826:a17d6390a480
More fixes to chapters 1 and 2.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Sun, 03 May 2009 20:27:09 -0700 |
parents | f3f901cfbfc7 |
children |
line wrap: on
line source
#!/bin/bash echo '[extensions]' >> $HGRC echo 'hgext.mq =' >> $HGRC #$ name: go hg init myrepo cd myrepo hg qinit hg qnew bad.patch echo a > a hg add a hg qrefresh hg qdelete bad.patch hg qpop hg qdelete bad.patch #$ name: convert hg qnew good.patch echo a > a hg add a hg qrefresh -m 'Good change' hg qfinish tip hg qapplied hg tip --style=compact #$ name: import hg qimport -r tip hg qapplied