1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-18 13:01:05 +02:00

45280: _git: add -local variants

Technically all timezone formats support the "-local" suffix but it is
not meaningful for all of them. As such just list out the specific
formats which it does.

Also adjust the 'default' description
This commit is contained in:
Eitan Adler 2020-01-11 13:46:13 +00:00 committed by Oliver Kiddle
parent 2ce5f6d79a
commit 5482d65d5c
2 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2020-01-11 Oliver Kiddle <okiddle@yahoo.co.uk>
* Eitan: 45280: Completion/Unix/Command/_git: add -local
variants to completed date formats
2020-01-11 Peter Stephenson <p.stephenson@samsung.com>
* users/24628 (fixed up): Doc/Zsh/contrib.yo: Add example of how

View file

@ -6116,15 +6116,22 @@ __git_date_formats () {
date_formats=(
relative:'show dates relative to the current time'
local:'show timestamps in local timezone'
local:'show timestamps in the local timezone'
iso{,8601}:'show timestamps in ISO 8601 format'
iso{,8601}-local:'show timestamps in ISO 8601 format in the local timezone'
iso-strict:'show timestamps in strict ISO 8601 format'
iso-strict-local:'show timestamps in strict ISO 8601 format in the local timezone'
rfc{,2822}:'show timestamps in RFC 2822 format'
rfc{,2822}-local:'show timestamps in RFC 2822 format in the local timezone'
short:'show only date but not time'
short-local:'show only date but not time in the local timezone'
raw:'show date in internal raw git format (%s %z)'
raw-local:'show date in internal raw git format (%s %z) in the local timezone'
human:'elide some current and recent date elements'
human-local:'elide some current and recent date elements in the local timezone'
unix:'show date as a Unix epoch timestamp'
default:'show timestamp in the original timezone'
default:'show timestamp in rfc-like format'
default-local:'show timestamp in rfc-like format in the local timezone'
)
_describe -t date-formats 'date format' date_formats -- '( format\:custom\ format )' -S :