Based on my search , the below 2 commands are supposed to give me remote branches with their author name. However, I get nothing in return - do you know why ?
I am using windows command prompt.
The below command returns : "Input file specified two times."
git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' | sort -k5n -k2M -k3n -k4n
The below command returns nothing :
git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)'
What should I do to list all active branches with their author names ?