From cbce99fc74986e27dc30136debcd0614d85c53c3 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Thu, 7 Aug 2014 13:29:00 -0500 Subject: [PATCH] Add git pull bash alias. --- .bash_profile | 1 + 1 file changed, 1 insertion(+) diff --git a/.bash_profile b/.bash_profile index 1d30c35..ebe484e 100644 --- a/.bash_profile +++ b/.bash_profile @@ -49,6 +49,7 @@ function pretty() { # Git aliases. alias gs='git status' alias gc='git commit' +alias gp='git pull' alias gcam='git commit -am' alias gl='git log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit' alias gsd='git svn dcommit'