Last active
October 17, 2016 08:54
-
-
Save isnifer/37e109851e7f0b5266e9 to your computer and use it in GitHub Desktop.
My own git shortcuts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gs="git status" | |
alias gc="git checkout" | |
alias gps="git push" | |
alias gpl="git pull -r" | |
alias gb="git checkout -b" | |
alias gm="git merge" | |
alias gd="git branch -D" | |
alias gf="git fetch" | |
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" | |
alias httpie="python -m SimpleHTTPServer" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment