Reputation: 111
There is a commit with commit hash = c1
How to list all the branches that have their head "pointing" (or equal) to c1 ?
Aware of how to get the branches that contain a commit, but not able to figure out the above.
Upvotes: 1
Views: 47
Reputation: 419
According to git manual page
git branch --points-at <object>
So for example from your question
git branch --points-at c1
Upvotes: 3