about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2017-01-24T22·57-0500
committerWilliam Carroll <wpcarro@gmail.com>2017-01-24T22·57-0500
commit2469efa06cc0835f7c6b71532e0bc061b32e0083 (patch)
tree093a3026a8adc8fe611898f632035aea429e6c97
parenta328b7e240dc6f6edf160ad163dbed68ef95c2ab (diff)
Adds gprom alias for git
-rw-r--r--aliases.sh9
1 files changed, 3 insertions, 6 deletions
diff --git a/aliases.sh b/aliases.sh
index ed4613271313..ba1b01a336e6 100644
--- a/aliases.sh
+++ b/aliases.sh
@@ -19,13 +19,10 @@ alias dir='find . -maxdepth 1 -type d -regex "\.\/[^.].+"'
 # colorizes syntax of files
 alias ccat="pygmentize -g"
 
+# self-evident git alias
+alias gprom="git pull --rebase origin master"
+
 # view the Unix directory stack as maintained through
 #     pushd and popd commands
 alias wdirs='dirs | tr " " "\n" | sort -r'
 
-# Pretty-print git history
-alias glp="git log --graph --pretty=format:'%Cred%h%Creset -%Cblue %an %Creset - %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
-
-# Convenient alias for git status
-alias gst="git status"
-