##// END OF EJS Templates
Flesh out bisect help text
Brendan Cully -
r4390:052062b9 default
parent child Browse files
Show More
@@ -252,8 +252,21 b' def test(ui, repo, rev):'
252 return 0
252 return 0
253
253
254 def bisect_run(ui, repo, cmd=None, *args):
254 def bisect_run(ui, repo, cmd=None, *args):
255 """bisect extension: dichotomic search in the DAG of changesets
255 """Dichotomic search in the DAG of changesets
256 for subcommands see "hg bisect help\"
256
257 This extension helps to find changesets which cause problems.
258 To use, mark the earliest changeset you know introduces the problem
259 as bad, then mark the latest changeset which is free from the problem
260 as good. Bisect will update your working directory to a revision for
261 testing. Once you have performed tests, mark the working directory
262 as bad or good and bisect will either update to another candidate
263 changeset or announce that it has found the bad revision.
264
265 Note: bisect expects bad revisions to be descendants of good revisions.
266 If you are looking for the point at which a problem was fixed, then make
267 the problem-free state "bad" and the problematic state "good."
268
269 For subcommands see "hg bisect help\"
257 """
270 """
258 def help_(cmd=None, *args):
271 def help_(cmd=None, *args):
259 """show help for a given bisect subcommand or all subcommands"""
272 """show help for a given bisect subcommand or all subcommands"""
General Comments 0
You need to be logged in to leave comments. Login now