Does anyone know how to get the latest SHA of a given branch from outside a git repository?
If you are inside a git repository, you can do:
git log origin/branch_X | head -1
However, I am not inside a git repository, and I would like to avoid having to clone a repository just to get the latest SHA of a tag/branch. Is there a clever way of doing this?
If you want to check SHA-1 of given branch in remote repository, then your answer is correct:
However if you are on the same filesystem simpler solution (not requiring to extract SHA-1 from output) would be simply:
See git(1) manpage for description of ‘
--git-dir‘ option.