I am seeing that for a particular commit, git is giving different time stamp values for different commands.
$ git show -s --format="%ci" ee9bb
2019-09-09 17:50:43 +0530
The above command shows time value as 17:50:43
While the below commands show time value as 17:24:01
$ git show -s ee9bb
commit ee9bb706c8fcc329fac4acf69ad6b684f1069170
Author: itsvamshers <itsvamshers@gmail.com>
Date: Mon Sep 9 17:24:01 2019 +0530
fixed country null issue
$ git log ee9bb
commit ee9bb706c8fcc329fac4acf69ad6b684f1069170
Author: itsvamshers <itsvamshers@gmail.com>
Date: Mon Sep 9 17:24:01 2019 +0530
Could anyone explain why this is the case. And which one should I consider.