hgbook

diff en/examples/bisect @ 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 b08f6a61bf15
children
line diff
     1.1 --- a/en/examples/bisect	Mon Feb 09 22:59:50 2009 -0800
     1.2 +++ b/en/examples/bisect	Sun Dec 13 16:35:56 2009 +0900
     1.3 @@ -37,15 +37,15 @@
     1.4  
     1.5  #$ name: search.init
     1.6  
     1.7 -hg bisect init
     1.8 +hg bisect --reset
     1.9  
    1.10  #$ name: search.bad-init
    1.11  
    1.12 -hg bisect bad
    1.13 +hg bisect --bad
    1.14  
    1.15  #$ name: search.good-init
    1.16  
    1.17 -hg bisect good 10
    1.18 +hg bisect --good 10
    1.19  
    1.20  #$ name: search.step1
    1.21  
    1.22 @@ -70,7 +70,7 @@
    1.23    fi
    1.24  
    1.25    echo this revision is $result
    1.26 -  hg bisect $result
    1.27 +  hg bisect --$result
    1.28  }
    1.29    
    1.30  #$ name: search.step2
    1.31 @@ -85,7 +85,7 @@
    1.32  
    1.33  #$ name: search.reset
    1.34  
    1.35 -hg bisect reset
    1.36 +hg bisect --reset
    1.37  
    1.38  #$ name:
    1.39