diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-06T16·00+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-11T23·43+0000 |
commit | 8082d87da385e2a4aeaff915799d26feb42b83af (patch) | |
tree | a22174be203faacc06e3cccfaf698606c15952ae /third_party/git/Documentation | |
parent | 7ef0d62730840ded097b524104cc0a0904591a63 (diff) |
feat(third_party/git/date): add "dottime" format r/374
Adds dottime (as defined on https://dotti.me) as a timestamp format. This format is designed to simplify working with timestamps across many different timezones by keeping the timestamp format itself in UTC (and indicating this with a dot character), but appending the local offset. This is implemented as a new format because the timestamp needs to be rendered both as UTC and including the offset, an implementation using a strftime formatting string is not sufficient.
Diffstat (limited to 'third_party/git/Documentation')
-rw-r--r-- | third_party/git/Documentation/rev-list-options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/git/Documentation/rev-list-options.txt b/third_party/git/Documentation/rev-list-options.txt index bb1251c0364d..fa4e70f51143 100644 --- a/third_party/git/Documentation/rev-list-options.txt +++ b/third_party/git/Documentation/rev-list-options.txt @@ -866,6 +866,9 @@ omitted. 1970). As with `--raw`, this is always in UTC and therefore `-local` has no effect. +`--date=dottime` shows the date in dottime format (rendered as UTC, +but suffixed with the local timezone offset if given) + `--date=format:...` feeds the format `...` to your system `strftime`, except for %z and %Z, which are handled internally. Use `--date=format:%c` to show the date in your system locale's |