Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if there is a generalized method for finding if a commit is a parent to another.

git branch --contains <hash>

Is almost what I want. It lists all branches that contain the commit, but I want to know if an arbitrary commit "contains" another commit.

My temporary hack is to create a branch at the commit and then check if it's contained in the list, but this seems sloppy.

git branch __temp_branch__ <hash1>
git branch --contains <hash2> # check if __temp_branch__ is in output
git branch -d __temp_branch__
share|improve this question

3 Answers

up vote 2 down vote accepted

If commitA is an ancestor of commitB, then git merge-base commitA commitB is commitA. For example:

if [ "$(git merge-base $commitA $commitB)" = "$commitA" ]; then ...

This is substantially more efficient than grepping the output of git rev-list, should that matter to you.

share|improve this answer
I'm going to accept this answer as it's quite a bit faster than the other answers and also ensures that both hashes are valid. – Kendall Hopkins Mar 8 '12 at 22:02

git rev-list <childSHA> | grep <parentSHA>

This will return the <parentSHA> if it was a parent of <childSHA>

share|improve this answer
Works great, thanks :) – Kendall Hopkins Mar 8 '12 at 20:08

One possibility maybe is:

git log --ancestry-path <parentSHA> <childSHA>

If it returns nothing, you know parentSHA is not a parent.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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