diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-07-13 23:03:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-13 23:22:52 -0700 |
commit | b727a235a786423c93ce4f09eee296fbb5a919d1 (patch) | |
tree | 72eec0eff86be43988a5d4bc019690c38a1a7fca | |
parent | 73013afd14c14ba178ab2aaa458168ec1d5506de (diff) | |
download | git-b727a235a786423c93ce4f09eee296fbb5a919d1.tar.gz git-b727a235a786423c93ce4f09eee296fbb5a919d1.tar.xz |
Wire new date formats to --date=<format> parser.
Now we can use all internally supported date formats with
git log --date=<format>
syntax. Earlier, we only allowed relative/local/default.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | revision.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/revision.c b/revision.c index 27cce090a..28b5f2eac 100644 --- a/revision.c +++ b/revision.c @@ -1133,6 +1133,14 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch if (!strncmp(arg, "--date=", 7)) { if (!strcmp(arg + 7, "relative")) revs->date_mode = DATE_RELATIVE; + else if (!strcmp(arg + 7, "iso8601") || + !strcmp(arg + 7, "iso")) + revs->date_mode = DATE_ISO8601; + else if (!strcmp(arg + 7, "rfc2822") || + !strcmp(arg + 7, "rfc")) + revs->date_mode = DATE_RFC2822; + else if (!strcmp(arg + 7, "short")) + revs->date_mode = DATE_SHORT; else if (!strcmp(arg + 7, "local")) revs->date_mode = DATE_LOCAL; else if (!strcmp(arg + 7, "default")) |