From d00ef577d807759bf7723e4c595ae2467b9f0a0e Mon Sep 17 00:00:00 2001 From: Mengwei Ding Date: Thu, 17 Oct 2019 16:02:49 -0700 Subject: [PATCH] [Code] Fix malformt date string from git log (#48585) --- 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 54f32ed9b100c..b5cfdad526183 100644 --- a/x-pack/legacy/plugins/code/server/git_operations.ts +++ b/x-pack/legacy/plugins/code/server/git_operations.ts @@ -506,7 +506,7 @@ export class GitOperations { const options: any = { n: count, format: { - updated: '%ai', + updated: '%aI', message: '%B', author: '%an', authorEmail: '%ae',