##// END OF EJS Templates
doc: use double quotation mark to quote arguments in examples for Windows users...
FUJIWARA Katsunori -
r19959:9ef92384 stable
parent child Browse files
Show More
@@ -103,16 +103,16 b' def churn(ui, repo, *pats, **opts):'
103 103 Examples::
104 104
105 105 # display count of changed lines for every committer
106 hg churn -t '{author|email}'
106 hg churn -t "{author|email}"
107 107
108 108 # display daily activity graph
109 hg churn -f '%H' -s -c
109 hg churn -f "%H" -s -c
110 110
111 111 # display activity of developers by month
112 hg churn -f '%Y-%m' -s -c
112 hg churn -f "%Y-%m" -s -c
113 113
114 114 # display count of lines changed in every year
115 hg churn -f '%Y' -s
115 hg churn -f "%Y" -s
116 116
117 117 It is possible to map alternate email addresses to a main address
118 118 by providing a file using the following format::
@@ -556,7 +556,7 b' def bisect(ui, repo, rev=None, extra=Non'
556 556
557 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 561 - forget the current bisection::
562 562
@@ -568,7 +568,7 b' def bisect(ui, repo, rev=None, extra=Non'
568 568 hg bisect --reset
569 569 hg bisect --bad 34
570 570 hg bisect --good 12
571 hg bisect --command 'make && make tests'
571 hg bisect --command "make && make tests"
572 572
573 573 - see all changesets whose states are already known in the current
574 574 bisection::
@@ -79,6 +79,6 b' Examples'
79 79
80 80 - resynchronize draft changesets relative to a remote repository::
81 81
82 hg phase -fd 'outgoing(URL)'
82 hg phase -fd "outgoing(URL)"
83 83
84 84 See :hg:`help phase` for more information on manually manipulating phases.
General Comments 0
You need to be logged in to leave comments. Login now