commit: add some help examples (issue4963)

Includes documenting --date now, which resolves the above issue.
This commit is contained in:
Augie Fackler 2015-12-04 15:24:05 -05:00
parent f675aea41b
commit 31fc3d117c

View File

@ -1585,6 +1585,22 @@ def commit(ui, repo, *pats, **opts):
See :hg:`help dates` for a list of formats valid for -d/--date.
Returns 0 on success, 1 if nothing changed.
.. container:: verbose
Examples:
- commit all files ending in .py:
hg commit --include 'set:**.py'
- commit all non-binary files:
hg commit --exclude 'set:binary()'
- amend the current commit and set the date to now:
hg commit --amend --date now
"""
wlock = lock = None
try: