##// END OF EJS Templates
add document on command defaults
TK Soh -
r3039:77637938 default
parent child Browse files
Show More
@@ -135,6 +135,21 b' decode/encode::'
135 # them to the working dir
135 # them to the working dir
136 **.txt = tempfile: unix2dos -n INFILE OUTFILE
136 **.txt = tempfile: unix2dos -n INFILE OUTFILE
137
137
138 defaults::
139 Use the [defaults] section to define command defaults, i.e. the
140 default options/arguments to pass to the specified commands.
141
142 The following example makes 'hg log' run in verbose mode, and
143 'hg status' show only the modified files, by default.
144
145 [defaults]
146 log = -v
147 status = -m
148
149 The actual commands, instead of their aliases, must be used when
150 defining command defaults. The command defaults will also be
151 applied to the aliases of the commands defined.
152
138 email::
153 email::
139 Settings for extensions that send email messages.
154 Settings for extensions that send email messages.
140 from;;
155 from;;
General Comments 0
You need to be logged in to leave comments. Login now