I recently learned that I can get hg log to print the history in reverse order with:
hg log -r :
So of course I tried:
git log
You could create a bashrc function (assuming you are on a unixy os)
function git_logr { git log --reverse }