Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 19959:9ef92384415c stable
doc: use double quotation mark to quote arguments in examples for Windows users
On Windows, only double quotation mark can quote command line
arguments.
So, this patch uses double quotation mark to quote command line
arguments in all examples of online help document.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Fri, 25 Oct 2013 01:14:18 +0900 |
parents | 25b02c6f73a6 |
children | 95304251c376 |
comparison
equal
deleted
inserted
replaced
19958:25b02c6f73a6 | 19959:9ef92384415c |
---|---|
554 hg bisect --skip | 554 hg bisect --skip |
555 hg bisect --skip 23 | 555 hg bisect --skip 23 |
556 | 556 |
557 - skip all revisions that do not touch directories ``foo`` or ``bar``:: | 557 - skip all revisions that do not touch directories ``foo`` or ``bar``:: |
558 | 558 |
559 hg bisect --skip '!( file("path:foo") & file("path:bar") )' | 559 hg bisect --skip "!( file('path:foo') & file('path:bar') )" |
560 | 560 |
561 - forget the current bisection:: | 561 - forget the current bisection:: |
562 | 562 |
563 hg bisect --reset | 563 hg bisect --reset |
564 | 564 |
566 revision:: | 566 revision:: |
567 | 567 |
568 hg bisect --reset | 568 hg bisect --reset |
569 hg bisect --bad 34 | 569 hg bisect --bad 34 |
570 hg bisect --good 12 | 570 hg bisect --good 12 |
571 hg bisect --command 'make && make tests' | 571 hg bisect --command "make && make tests" |
572 | 572 |
573 - see all changesets whose states are already known in the current | 573 - see all changesets whose states are already known in the current |
574 bisection:: | 574 bisection:: |
575 | 575 |
576 hg log -r "bisect(pruned)" | 576 hg log -r "bisect(pruned)" |