From 1910b1fe7055d76e634980118750a3073c38679f Mon Sep 17 00:00:00 2001 From: DevotionGeo Date: Sun, 11 Feb 2018 03:26:26 +0500 Subject: [PATCH] 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. --- plugins/git/git.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index fa0c06500..1131cf716 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -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'