Reputation: 69
Can someone explain/provide an example of how to list branches that contains another branch in git?
can I use the contain attribute?
Upvotes: 6
Views: 1662
Reputation: 312219
A branch name is just a fancy pointer to a given commit (in other words, it's a commitish), so you can look for branches that contain it with the --contains
option:
$ git branch --contains my_branch
And if you want to check remote branches as well, you can add the -r
flag:
$ git branch -r --contains my_branch
Upvotes: 9
Reputation: 30317
Sounds like you want to know about git branch --contains whatever-branch
. Use -r if you want to check remote branches as well.
Upvotes: 1