How can I check with the command line the latest commit hash of a particular Git branch?
you can git fetch nameofremoterepo, then git log
git fetch nameofremoterepo
git log
and personally, I alias gitlog to git log --graph --oneline --pretty --decorate --all. try out and see if it fits you
gitlog
git log --graph --oneline --pretty --decorate --all