vote up 1 vote down star

Does anyone know how to get the latest SHA of a given branch FROM OUTSIDE a git repository?

If you are inside git repository, it’s 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?

Thanks!

-Steve

flag
Do you have filesystem access to the repository you would like to query? – Greg Hewgill Jul 21 at 21:44
The correct way to do this is "git rev-parse origin/branch_X" or "git rev-parse refs/remotes/origin/branch_X", not git-log – Jakub Narębski Jul 21 at 23:52

4 Answers

vote up 3 vote down check

If you want to check SHA-1 of given branch in remote repositoy, then your answer is correct:

$ git ls-remote <URL>

However if you are on the same filesystem simpler solution (not requiring to extract SHA-1 from output) would be simply:

$ git --git-dir=/path/to/repo/.git rev-parse origin/branch_X

See git(1) manpage for description of '--git-dir' option.

link|flag
vote up 0 vote down

If you just want the SHA-1 from the currently checked out branch of your local repo, you can just specify HEAD instead of origin/branch_X:

git --git-dir=/path/to/repo/.git rev-parse --verify HEAD

link|flag
vote up 0 vote down

References to branch heads are stored in the .git/refs/ tree. So you should be able to find the hash of the latest commit at:

cat .git/refs/remotes/origin/branch_X

Your path may differ slightly.

link|flag
That wouldn't work if you have packed refs. Then you have to take a look at .git/packed-refs – Jakub Narębski Jul 21 at 23:50
That's true, this solution is susceptible to any future changes in the Git on-disk repository format. – Greg Hewgill Jul 22 at 0:12
vote up 1 vote down

A colleague of mine answered this for me:

git ls-remote ssh://git.dev.pages/opt/git/repos/dev.git

-Steve

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.