I have an old branch, which I would like to delete. However, before doing so, I want to check that all commits made to this branch were at some point merged into some other branch. Thus, I'd like to see all commits made to my current branch which have not been applied to any other branch [or, if this is not possible without some scripting, how does one see all commits in one branch which have not been applied to another given branch?].

Many thanks!

link|improve this question
feedback

4 Answers

up vote 28 down vote accepted

You probably just want

git branch --contains branch-to-delete

If it reports something, the branch has been merged.

Your alternatives are really just rev-list syntax things. e.g. git log one-branch..another-branch shows everything that one-branch needs to have everything another-branch has.

You may also be interested in git show-branch as a way to see what's where.

link|improve this answer
2  
+1. See also stackoverflow.com/questions/850607/… – VonC Nov 10 '09 at 20:30
Thanks, "git branch --contains ..." is exactly what I wanted – user196429 Nov 10 '09 at 23:38
1  
The line 'If it reports something, the branch has merged' can be misinterpreted: if git branch --contains some-branch only returns some-branch, then it does return something, but it has not been merged. – Confusion Mar 21 at 16:26
feedback

To see a list of which commits are on one branch but not another, use git log:

git log oldbranch ^newbranch --no-merges

...that is, show commit logs for all commits on oldbranch that are not on newbranch. You can list multiple branches to include and exclude, e.g.

git log oldbranch1 oldbranch2 ^newbranch1 ^newbranch2 --no-merges
link|improve this answer
feedback

While some of the answers will help you find what you seek, the following sub-command of git branch is a more suitable solution for your task.

--merged is used to find all branches which can be safely deleted, since those branches are fully contained by HEAD.

While in master one could run the command to discover the ones you can safely remove, like so:

git branch --merged
  develop
  fpg_download_links
* master
  master_merge_static

# Delete local and remote tracking branches you don't want
git branch -d fpg_download_links
git push origin :fpg_download_links
git branch -d master_merge_static
git push origin :master_merge_static
link|improve this answer
feedback

If it is one (single) branch that you need to check, for example if you want that branch 'B' is fully merged into branch 'A', you can simply do the following:

$ git checkout A
$ git branch -d B

git branch -d <branchname> has the safety that "The branch must be fully merged in HEAD."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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