hgbook
diff en/examples/bisect @ 791:bf84d6b2281c
Minor changes and translation of code snippets for Ch.7.
author | Giulio@puck |
---|---|
date | Tue Aug 11 23:01:30 2009 +0200 (2009-08-11) |
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 Tue Aug 11 23:01:30 2009 +0200 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