several date related issues

2015-06-25 Thread H.Merijn Brand
Running 2.4.4 *** Dates do not respect LC_TIME $ date Thu 25 Jun 2015 13:02:48 CEST $ git log --pretty=fuller --date=local | head -6 | grep -i date AuthorDate: Mon Feb 16 16:47:08 2015 CommitDate: Mon Feb 16 16:47:08 2015 $ locale -ck LC_TIME | grep fmt d_t_fmt=%a %d %b %Y %r %Z d_fmt=%d-%m-%Y

Re: several date related issues

2015-06-25 Thread Jeff King
On Thu, Jun 25, 2015 at 01:19:01PM +0200, H.Merijn Brand wrote: *** Dates do not respect LC_TIME Right, we use our own routines for formatting the dates, and not strftime. And it probably should stay that way in general, as git's output is often meant to be parsed. That being said, I do not

Re: several date related issues

2015-06-25 Thread H.Merijn Brand
On Thu, 25 Jun 2015 08:44:45 -0400, Jeff King p...@peff.net wrote: On Thu, Jun 25, 2015 at 01:19:01PM +0200, H.Merijn Brand wrote: *** Dates do not respect LC_TIME Right, we use our own routines for formatting the dates, and not strftime. And it probably should stay that way in general,