From 52e8abc30fb35fc21369fa3bd14b0f9fc4e15f69 Mon Sep 17 00:00:00 2001 From: Aaron Gable Date: Wed, 7 Jun 2017 09:37:24 -0700 Subject: [PATCH] git-map: use committer date instead of author date TBR=iannucci@chromium.org Change-Id: I07668787e4f26bc4809ea3c3a5331a259655d2da Reviewed-on: https://chromium-review.googlesource.com/527295 Reviewed-by: Aaron Gable Commit-Queue: Aaron Gable --- git_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_map.py b/git_map.py index c765753a02..278cfbe7c9 100755 --- a/git_map.py +++ b/git_map.py @@ -66,7 +66,7 @@ def main(argv): return 0 map_extra = get_config_list('depot_tools.map_extra') - fmt = '%C(red bold)%h%x09%Creset%C(green)%d%Creset %C(yellow)%ad%Creset ~ %s' + fmt = '%C(red bold)%h%x09%Creset%C(green)%d%Creset %C(yellow)%cd%Creset ~ %s' log_proc = subprocess2.Popen( [GIT_EXE, 'log', '--graph', '--branches', '--tags', root(), '--color=always', '--date=short', ('--pretty=format:' + fmt)