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 have a git repository with multiple branches.

How can I know which branches are already merged into the master branch?

share|improve this question

2 Answers

up vote 170 down vote accepted

I found the answer myself:

git branch --merged lists the branches that are already merged

git branch --no-merged lists the branches that have not been merged

share|improve this answer
Just a side note, when I tried to see if a remote branch had been merged I first setup a local tracking branch, identified the status with git branch --merged and then deleted the local and remote branches. – Kenneth Kalmer Jul 1 '11 at 8:30
21  
Apparently, git branch -a --merged/no-merged does also work, without creating a local tracking branch in the process. – x3ro Jul 23 '11 at 11:17
9  
Or just git branch -r --merged/--no-merged to only find remote branches. – Asfand Yar Qazi Aug 24 '12 at 11:07

You can use the git merge-base command to find the latest common commit between the two branches. If that commit is the same as your branch head, then the branch has been completely merged.

Note that git branch -d does this sort of thing already because it will refuse to delete a branch that hasn't already been completely merged.

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.