Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I find the most recent common ancestor commit of two git branches?

Is there an easy way to do this in git 1.6 ?

share|improve this question

2 Answers

up vote 115 down vote accepted

I think that you are looking for git merge-base.

share|improve this answer
8  
Note that this finds the most recent common ancestor... which I believe is what the questioner wants, so +1. Just noting it, in case anyone comes here trying to find the oldest common ancestor (as I did) -- for which, see also: stackoverflow.com/questions/1527234/… – lindes Feb 14 '11 at 9:52
Exactly what I needed, excellent. – Kzqai May 2 at 21:51

use git merge-base A B

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.