comparison hgext/churn.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 68f7129af6a8
children e96e9f805c19
comparison
equal deleted inserted replaced
19958:25b02c6f73a6 19959:9ef92384415c
101 --changesets option is specified. 101 --changesets option is specified.
102 102
103 Examples:: 103 Examples::
104 104
105 # display count of changed lines for every committer 105 # display count of changed lines for every committer
106 hg churn -t '{author|email}' 106 hg churn -t "{author|email}"
107 107
108 # display daily activity graph 108 # display daily activity graph
109 hg churn -f '%H' -s -c 109 hg churn -f "%H" -s -c
110 110
111 # display activity of developers by month 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 # display count of lines changed in every year 114 # display count of lines changed in every year
115 hg churn -f '%Y' -s 115 hg churn -f "%Y" -s
116 116
117 It is possible to map alternate email addresses to a main address 117 It is possible to map alternate email addresses to a main address
118 by providing a file using the following format:: 118 by providing a file using the following format::
119 119
120 <alias email> = <actual email> 120 <alias email> = <actual email>