From 222caf79a38e1b6a02a8729fa1bd3dec890889e5 Mon Sep 17 00:00:00 2001 From: Steven Burgess Date: Fri, 24 May 2024 08:51:57 -0400 Subject: [PATCH] Change alias for `git pull` to `gp` The rest of the `git pull` aliases are prefixed with `gp` and earlier we are using `gl` to mean `git log`. I believe the intention was to have `git pull` be `gp`, not `gl`. --- plugins/git/git.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 1e65a7acc..fd2a6dc8c 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -259,7 +259,7 @@ alias gmum='git merge upstream/$(git_main_branch)' alias gmtl='git mergetool --no-prompt' alias gmtlvim='git mergetool --no-prompt --tool=vimdiff' -alias gl='git pull' +alias gp='git pull' alias gpr='git pull --rebase' alias gprv='git pull --rebase -v' alias gpra='git pull --rebase --autostash'