Created
August 20, 2018 20:13
-
-
Save trentmwillis/85442d86eac866c18c26b6347776f58d to your computer and use it in GitHub Desktop.
Bash Aliases
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
# Git | |
alias gs="git status" | |
alias gc="git checkout" | |
alias gcb="git checkout -b" | |
alias gb="git branch" | |
alias gprom="git pull --rebase origin master" | |
alias gprum="git pull --rebase upstream master" | |
alias gl="git log" | |
alias glp="git log --decorate --pretty=oneline" | |
# NPM | |
alias nr="npm run" | |
# Python | |
alias pyserve="python -m SimpleHTTPServer" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment