Skip to content

Instantly share code, notes, and snippets.

@papayasoft
Created May 12, 2013 06:22
Show Gist options
  • Save papayasoft/5562628 to your computer and use it in GitHub Desktop.
Save papayasoft/5562628 to your computer and use it in GitHub Desktop.
List branches merged into branch A, but not yet merged into branch B
# List branches merged into branch A, but not yet merged into branch B
# see http://stackoverflow.com/questions/8071079/git-list-branches-merged-into-a-branch-but-not-into-another
$ comm -12 --nocheck-order <(git branch --merged qa) <(git branch --no-merged master)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment