Commit 1875755f authored by mwilliams's avatar mwilliams

Adding more useful aliases for Git.

parent 71c59eaf
...@@ -12,7 +12,16 @@ alias ...='cd ../..' ...@@ -12,7 +12,16 @@ alias ...='cd ../..'
alias _='sudo' alias _='sudo'
#alias g='grep -in' #alias g='grep -in'
alias g='git' alias g='git'
alias gst='git status'
alias gl='git pull'
alias gp='git push'
alias gd='git diff | mate'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gb='git branch'
alias gba='git branch -a'
alias history='fc -l 1' alias history='fc -l 1'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment