Can someone explain/provide an example of how to list branches that contains another branch in git?
can I use the contain attribute?
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
Sounds like you want to know about git branch --contains whatever-branch
. Use -r if you want to check remote branches as well.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With