hgbook
diff en/examples/bisect @ 322:73b094b764ec
Fixed bad argument usage with bisect
author | Nicolas Cavigneaux <nico@bounga.org> |
---|---|
date | Thu Jan 15 10:13:51 2009 +0100 (2009-01-15) |
parents | 7a6bd93174bd |
children | 51b5d56744c5 |
line diff
1.1 --- a/en/examples/bisect Mon Dec 31 20:06:58 2007 -0800 1.2 +++ b/en/examples/bisect Thu Jan 15 10:13:51 2009 +0100 1.3 @@ -33,15 +33,15 @@ 1.4 1.5 #$ name: search.init 1.6 1.7 -hg bisect --init 1.8 +hg bisect init 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 @@ -66,7 +66,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 @@ -81,7 +81,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