* Bug in git-log --date=short --pretty=format:"%ad"
@ 2008-05-28 13:49 Christophe GRENIER
2008-05-28 15:11 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Christophe GRENIER @ 2008-05-28 13:49 UTC (permalink / raw)
To: git
Hi,
According to the git-log man page, we can configure how date are
displayed:
--date={relative,local,default,iso,rfc}
Only takes effect for dates shown in human-readable format,
such as when using "--pretty".
But it doesn't work when a user supplied format is used:
git-log --date=short --pretty=format:"%ad"
Wed May 28 13:28:35 2008 +0200
Wed May 28 13:26:14 2008 +0200
...
instead of
2008-05-28
2008-05-28
...
In pretty.c, when pretty_print_commit() calls format_commit_message(),
dmode isn't passed as argument so format_commit_item() will never have
the date format specified at the command line.
This problem is present in git-1.5.5.3
Regards,
Christophe
--
,-~~-.___. ._.
/ | ' \ | |"""""""""| Christophe GRENIER
( ) 0 | | | grenier@cgsecurity.org
\_/-, ,----' | | |
==== !_!--v---v--"
/ \-'~; |""""""""| TestDisk & PhotoRec
/ __/~| ._-""|| | Data Recovery
=( _____|_|____||________| http://www.cgsecurity.org
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Bug in git-log --date=short --pretty=format:"%ad"
2008-05-28 13:49 Bug in git-log --date=short --pretty=format:"%ad" Christophe GRENIER
@ 2008-05-28 15:11 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2008-05-28 15:11 UTC (permalink / raw)
To: Christophe GRENIER; +Cc: git
Christophe GRENIER <grenier@cgsecurity.org> writes:
> According to the git-log man page, we can configure how date are
> displayed:
>
> --date={relative,local,default,iso,rfc}
> Only takes effect for dates shown in human-readable format,
> such as when using "--pretty".
>
> But it doesn't work when a user supplied format is used:
Sorry, in theory, perhaps they could, but it doesn't and it never did.
The output is working as designed and intended.
You probably could send a patch to add %aT and %cT that are defined as
"author/committer date in the format specified with --date=<this> option";
but "%ad" and "%cd" are defined to emit "author/committer date always in
the default format".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-05-28 15:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-28 13:49 Bug in git-log --date=short --pretty=format:"%ad" Christophe GRENIER
2008-05-28 15:11 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).