Home > front end >  How to get all the branches with a certain head in git
How to get all the branches with a certain head in git

Time:10-13

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.

CodePudding user response:

According to git manual page

git branch --points-at <object>

So for example from your question

git branch --points-at c1

  • Related