diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:15 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:15 -0800 |
commit | 4b1197ab5a74982fd09bda07d17325f1261975ee (patch) | |
tree | fb0ef579db7da4d81531c2e722dc5227dd8a96b1 /contrib/completion | |
parent | Merge branch 'em/missing-pager' (diff) | |
parent | completion: add human and auto: date format (diff) | |
download | tgif-4b1197ab5a74982fd09bda07d17325f1261975ee.tar.xz |
Merge branch 'yn/complete-date-format-options'
The completion script (in contrib/) learns that the "--date"
option of commands from the "git log" family takes "human" and
"auto" as valid values.
* yn/complete-date-format-options:
completion: add human and auto: date format
Diffstat (limited to 'contrib/completion')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index c82ccaebcc..63b3a6b22e 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2001,7 +2001,7 @@ __git_log_shortlog_options=" " __git_log_pretty_formats="oneline short medium full fuller reference email raw format: tformat: mboxrd" -__git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default raw unix format:" +__git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default human raw unix auto: format:" _git_log () { |