Search code examples
gitubuntugit-pullgit-log

exact timestamps git pull


I'm trying to retrieve a list when a git pull was made on a Ubuntu server eg.

  • 2017-11-03 14:00:00 revision
  • 2017-11-02 11:30:00 revision

Is this possible?

I tried git log but this shows me the commits and not the date when they were pulled.


Solution

  • You can use

    git reflog --date=iso

    It will give you information related to most of the logs. But sometimes if somebody has deleted ref logs then you will not have any information.