1

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.

Elie
  • 101
  • 6

1 Answers1

3

According to git manual page

git branch --points-at <object>

So for example from your question

git branch --points-at c1

kadewu
  • 336
  • 4
  • 8