stat -c %Y .git/FETCH_HEAD
Will give you a unix timestamp of the last modification of that file.
Git writes the FETCH_HEAD file every time you pull or fetch, even if there was nothing to pull.
stat -c %Y .git/FETCH_HEAD
Will give you a unix timestamp of the last modification of that file.
Git writes the FETCH_HEAD file every time you pull or fetch, even if there was nothing to pull.