I'm trying to retrieve a list when a git pull was made on a Ubuntu server eg.
Is this possible?
I tried git log but this shows me the commits and not the date when they were pulled.
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.