> On Fri, Feb 20, 2009 at 01:23:54PM -0800,
eletuchy@gmail.com wrote:
>
>> From: Eugene Letuchy <eugene@facebook.com>
>>
>> In the context of sizing the git blame time column, it doesn't make a
>> lot of sense to see "12 months ago" next to an exact timestamp +
>> timezone for something 13 months ago. This commit makes commits older
>> than 12 months display the date only, not the time.
>
> I think this is an improvement, though I was thinking of taking it a
> step further:
> ...
> + /* Otherwise, years. Centuries is probably overkill. */
> + snprintf(timebuf, sizeof(timebuf), "%lu years ago", (diff + 183) / 365);
> + return timebuf;
> }
>
> if (mode == DATE_LOCAL)
>
>
> but maybe other people actually like seeing the absolute time. I've
> always found it jarring when reading relative times (but part of that
> _was_ because it was so long and exact).