Skip to content

Instantly share code, notes, and snippets.

@trentmwillis
Created August 20, 2018 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trentmwillis/85442d86eac866c18c26b6347776f58d to your computer and use it in GitHub Desktop.
Save trentmwillis/85442d86eac866c18c26b6347776f58d to your computer and use it in GitHub Desktop.
Bash Aliases
# 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