Currently, if I want to know the branches that point at the current commit, I use
git show-ref | grep \"\"
Where <
<
git branch --points-at HEAD
HEAD is a reference to the currently checked out commit.
See git-branch for more information.