I've got a git repository with many branches, some of them already merged and some not. Since the number of branches is quite big, how can I know which branches have not been merged yet? I would avoid to do an octopus merge remerging all the branches again.
|
|
|
Try this:
It does what it says on the tin (lists branches which have been merged into
If you don't specify
then it will show you branches which have been merged into the current |
|||
|
|
|
If a branch is merged already, merging it again won't do anything. So you don't have to be worried about "re-merging" branches that are already merged. To answer your question, you can simply issue
to see the merged branches or
to see the unmerged branches. Your current branch is implied but you can specify other branches if you wish.
will show you branches that are not yet merged into |
||||
|
|