Is it possible to get the date and time when my git repository was updated from the remote repo. Currently I use "repo sync
" and "git pull --rebase
" to update my local repository.
Thanks
Is it possible to get the date and time when my git repository was updated from the remote repo. Currently I use "repo sync
" and "git pull --rebase
" to update my local repository.
Thanks
Try
git rev-list --format=format:'%ai' --max-count=1 `git rev-parse HEAD`