Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.2, 0.8.3, and 0.9

doc: add command line section in commit

Changeset 60af96da2531

Parent d3dd4d821009

by Giampaolo Fadel

Changes to one file · Browse files at 60af96da2531 Showing diff from parent d3dd4d821009 Diff from another changeset...

 
260
261
262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
264
265
 
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
@@ -260,6 +260,39 @@
  Configures the diff size limit    External tool configuration is deprecated and will be removed in 0.9 + +From command line +----------------- + +The commit tool can be started from command line :: + + hgtk commit + +or :: + + hgtk ci + +The syntax is :: + + hgtk commit [OPTIONS] [FILES] + +where [FILES] is one or more file that must be commited, if no files are +specified TortoiseHG commits all the modified files, and valid [OPTIONS] are: + +``-d``, ``--date`` + Use the specified date as commit date, if not specified the current date + and time is used. For a quick help on the format of date type:: + + hgtk help dates + + or :: + + hg help dates + +``-u``, ``--user`` + Use the specified user name as author of the commit, if not specified the + user set in repository or global settings is used. +    Changes since 0.7  -----------------