alias gci='git commit -m ' # Note the trailing space
alias gco='git checkout ' # Note the trailing space
alias gp='git pull --rebase'
-alias gpp='git pull --rebase && git push -u origin ' # Note the trailing space
+alias gpp='git pull --rebase && git push ' # Note the trailing space
alias gl='git log --oneline --decorate'
-alias gst='git stash ' # Note the trailing space
-alias gsl='git stash list'
-alias gsp='git stash pop'
alias sl=ls
alias la='ls -A'