提交 b727a235 编写于 作者: J Junio C Hamano

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: NJunio C Hamano <gitster@pobox.com>
上级 73013afd
...@@ -1133,6 +1133,14 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch ...@@ -1133,6 +1133,14 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
if (!strncmp(arg, "--date=", 7)) { if (!strncmp(arg, "--date=", 7)) {
if (!strcmp(arg + 7, "relative")) if (!strcmp(arg + 7, "relative"))
revs->date_mode = DATE_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")) else if (!strcmp(arg + 7, "local"))
revs->date_mode = DATE_LOCAL; revs->date_mode = DATE_LOCAL;
else if (!strcmp(arg + 7, "default")) else if (!strcmp(arg + 7, "default"))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册