git-query

git data extraction tool using c and libgit2

git clone https://9o.is/git/git-query.git

commit bfd335a025d69a4465337eff48ea71c79a762042
parent c6eee66d1bf588e846d121a61494002943be41f1
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sun,  7 May 2017 13:12:43 +0200

for the commit Date: header use the git format-patch format

Diffstat:
Mstagit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stagit.c b/stagit.c @@ -292,7 +292,7 @@ printtime(FILE *fp, const git_time *intime) t = (time_t)intime->time + (intime->offset * 60); if (!(intm = gmtime(&t))) return; - strftime(out, sizeof(out), "%a %b %e %H:%M:%S", intm); + strftime(out, sizeof(out), "%a, %e %b %Y %H:%M:%S", intm); if (intime->offset < 0) fprintf(fp, "%s -%02d%02d", out, -(intime->offset) / 60, -(intime->offset) % 60);