From 74fb3a148fe36c481db8d05d77f5169772e55478 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Tue, 23 Jan 2018 10:28:00 +0100 Subject: [PATCH] Add git pull alias --- .config/zsh/.zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index e189652..66d94b1 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -93,7 +93,8 @@ alias g="git" alias ga="g add" alias gs="g status" alias gc="g commit" -alias gp="g push" +alias gp="g pull" +alias gps="g push" alias gd="g diff" alias gdc="gd --cached" alias gl="g log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d %C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all"