From 1f832731fe17d47d5b7ac58ca8695a009b131f03 Mon Sep 17 00:00:00 2001 From: Elias Norrby Date: Tue, 9 Mar 2021 17:01:14 +0100 Subject: [PATCH] feat(git): add gl and glnr aliases --- shell/git/aliases.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/git/aliases.zsh b/shell/git/aliases.zsh index 7ad8a050..44b1b171 100644 --- a/shell/git/aliases.zsh +++ b/shell/git/aliases.zsh @@ -14,6 +14,8 @@ alias gd="git diff" alias glog="git log --oneline --decorate --graph" alias glogb="glog --branches" alias gp="git push" +alias gl="git pull" +alias glnr="git pull --no-rebase" alias gst="git status" alias grv="git remote -v"