While branches keep piling up in a project and I lost track of which branches _I_ created and forgot to cleanup/delete later, this oneliner helped me out:
$ git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' | sort -k5n -k2M -k3n -k4n
thnx stackoverflow.com