I want to find out who created a branch.
I am sort of able to do so with:
git branch -a | xargs -L 1 bash -c \'echo \"$1 `git log --pretty=format:\"%
As far as I know, you may see if you are the creator of a branch only. This is indicated by the first row in .git/ref/heads/. If it ends with "Created from HEAD" you are the creator.