From 2693f5b60dc612afd90d5cfa1cc6c07f77b3084b Mon Sep 17 00:00:00 2001 From: Mengwei Ding Date: Thu, 17 Oct 2019 18:24:11 -0700 Subject: [PATCH] [Code] Fix malformt date string from git log (#48585) (#48596) --- x-pack/legacy/plugins/code/server/git_operations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/code/server/git_operations.ts b/x-pack/legacy/plugins/code/server/git_operations.ts index c303e5656c551..3c8e8a38d1089 100644 --- a/x-pack/legacy/plugins/code/server/git_operations.ts +++ b/x-pack/legacy/plugins/code/server/git_operations.ts @@ -503,7 +503,7 @@ export class GitOperations { const options: any = { n: count, format: { - updated: '%ai', + updated: '%aI', message: '%B', author: '%an', authorEmail: '%ae',