I'm trying to acquire information about the branch on which change was pushed.
Let's say I pushed a change with commit hash 1234df on branch some_feature.
It got merged to the master branch and all the other branches.
Later on, I would like to get information on which branch has the given commit which was pushed, not about all branches which already merged this change to themself, but the first one, in this case, some_feature.
git name-rev 1234df
will return tag, not the name of the branch.
Is this possible?