I don't understand why people say git is hard to use. Look how easy it is to list all tags with their dates: $ git for-each-ref --format='%(if)%(committerdate)%(then)%(committerdate)%(else)%(*committerdate)%(end) %(refname:lstrip=2)' refs/tags/*
Not sure if this is a serious question, but in case it is, `git config --global alias.l 'log --graph --decorate --oneline'`, and then just run `git l`. For all branches, `git l --all` (or create another alias).
