hgbook

view fr/examples/ch11/qdelete @ 1114:527b86d55d4a

inotify: update installation information

inotify is shipped in Mercurial since 1.0, which greatly simplifies the installation process
author Nicolas Dumazet <nicdumz.commits@gmail.com>
date Sun Dec 13 16:35:56 2009 +0900 (2009-12-13)
parents
children
line source
1 #!/bin/bash
3 echo '[extensions]' >> $HGRC
4 echo 'hgext.mq =' >> $HGRC
6 #$ name: go
8 hg init myrepo
9 cd myrepo
10 hg qinit
11 hg qnew bad.patch
12 echo a > a
13 hg add a
14 hg qrefresh
15 hg qdelete bad.patch
16 hg qpop
17 hg qdelete bad.patch
19 #$ name: convert
21 hg qnew good.patch
22 echo a > a
23 hg add a
24 hg qrefresh -m 'Good change'
25 hg qfinish tip
26 hg qapplied
27 hg tip --style=compact
29 #$ name: import
31 hg qimport -r tip
32 hg qapplied