Add glr alias for git log --reverse.

I wanted to add another one the `gl` for `git log`, but that's already taken for `git pull`, so I added the one I use often when I want to go to the starting commit of some repository which is `git log --reverse` for which I set the alias `glr` which wasn't taken.
This commit is contained in:
DevotionGeo 2018-02-11 03:26:26 +05:00 committed by GitHub
commit 1910b1fe70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -174,6 +174,7 @@ alias gke='\gitk --all $(git log -g --pretty=%h)'
compdef _git gke='gitk'
alias gl='git pull'
alias glr='git log --reverse'
alias glg='git log --stat'
alias glgp='git log --stat -p'
alias glgg='git log --graph'