I wanted to improve the formatting of my "git branch" command, where I added logic to include the commit date and commit user.
git for-each-ref refs/heads/ --format='%(HEAD) %(color:bold yellow)%(refname:short)%(color:reset) %(color:green)%(committerdate)%(color:reset) - %(contents:subject) %(color:dim white) - %(authorname)%(color:reset)'
Is there anyway of improving the formatting from the first (actual) output, into the second (desired) output?
This is not an urgent thing at all, but a nice to have. I've played with the git format, but my knowledge is limited.
