hgbook

diff ja/examples/mq.tutorial.qnew2.out @ 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ja/examples/mq.tutorial.qnew2.out	Sun Dec 13 16:35:56 2009 +0900
     1.3 @@ -0,0 +1,28 @@
     1.4 +$ \textbf{hg qnew second.patch}
     1.5 +$ \textbf{hg log --style=compact --limit=2}
     1.6 +2[qtip,second.patch,tip]   
     1.7 +  [mq]: second.patch
     1.8 +
     1.9 +1[first.patch,qbase]   
    1.10 +  [mq]: first.patch
    1.11 +
    1.12 +$ \textbf{echo 'line 4' >> file1}
    1.13 +$ \textbf{hg qrefresh}
    1.14 +$ \textbf{hg tip --style=compact --patch}
    1.15 +2[qtip,second.patch,tip]   
    1.16 +  [mq]: second.patch
    1.17 +
    1.18 +diff -r  -r  file1
    1.19 +
    1.20 +
    1.21 +@@ -1,3 +1,4 @@ line 1
    1.22 + line 1
    1.23 + line 2
    1.24 + line 3
    1.25 ++line 4
    1.26 +
    1.27 +$ \textbf{hg annotate file1}
    1.28 +0: line 1
    1.29 +1: line 2
    1.30 +1: line 3
    1.31 +2: line 4