Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

find out who created a branch on a remote git repository

Tags:

git

I'm pruning some branches off of a git remote.

How can I find out who created a branch on a remote git repository?

Maybe there is something similar to git branch -r --show-user?

like image 722
David West Avatar asked Feb 12 '14 16:02

David West


1 Answers

Too much theory in previous answers.

Answer is pretty simple:

git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' | sort

Taken from: Find out git branch creator

like image 162
Ilya Istomin Avatar answered Sep 27 '22 21:09

Ilya Istomin