Mercurial > hgrepos > DevTools > mercurial-extensions
changeset 191:3c7df52ebd83
Drop a comment regarting the contents of the "match" argument when committing
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Sun, 30 Sep 2018 08:14:30 +0200 |
| parents | 83843b3de6e5 |
| children | 888e05bfdb81 |
| files | extensions/timestamps.py |
| diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/extensions/timestamps.py Wed Sep 26 01:18:23 2018 +0200 +++ b/extensions/timestamps.py Sun Sep 30 08:14:30 2018 +0200 @@ -574,6 +574,10 @@ def commit(self, text="", user=None, date=None, match=None, force=False, editor=False, extra=None, *args, **kwargs): self.ui.debug("TimestampedRepo.commit()") + # + # match: "hg ci" -> alwaysmatcher + # "hg ci file1 ... -> patternmatcher with the files + # super(TimestampedRepo, self).commit( *args, text=text, user=user, date=date, match=match, force=force,
