I can list all branches containing a certain commit using git branch --list --contains
just fine. But as explained in the related question on how to list all branches, this is a porcelain command that should not be used in scripts.
The latter question suggests to use the plumbing command git for-each-ref
, but that does not support --contains
.
What is the correct plumbing interface to list all branches that contain a certain commit.
One possible solution using the plumbing commands
git-for-each-ref
andgit merge-base
(the latter suggested by Joachim himself):The script is available at Jubobs/git-aliases on GitHub.
(Edit: thanks to coredump for showing me how to get rid of that nasty
eval
.)