From ddd5cb03f3abfc720cff8ae92f8bd12822dd1600 Mon Sep 17 00:00:00 2001 From: Quentin Dreyer Date: Tue, 17 Oct 2017 10:24:49 +0200 Subject: [PATCH] Renamed ggsup to gbsup Since GPSUP acronym stands for "Git Push Set Up Stream", I guess alias name for "Git Branch Set Up Stream" should be GBSUP, not GGSUP. --- 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 34942d38..279b529c 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -152,7 +152,7 @@ compdef _git ggpull=git-checkout alias ggpush='git push origin $(git_current_branch)' compdef _git ggpush=git-checkout -alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)' +alias gbsup='git branch --set-upstream-to=origin/$(git_current_branch)' alias gpsup='git push --set-upstream origin $(git_current_branch)' alias ghh='git help'