Skip to content

Instantly share code, notes, and snippets.

@blake-simpson
Last active October 10, 2015 21:38
Show Gist options
  • Save blake-simpson/3754539 to your computer and use it in GitHub Desktop.
Save blake-simpson/3754539 to your computer and use it in GitHub Desktop.
bash_profile
alias ls='ls -G'
alias lsa='ls -la'
alias g='git'
alias gp="git pull"
alias gpu="git push"
alias gpt="git push --tags"
alias gpp="git pull && git push"
alias gc="git checkout"
alias gs="git status"
alias gb="git branch"
alias g-='git checkout -'
alias gl='git log --graph'
alias glo='git log --oneline'
alias bx='bundle exec'
alias rc='rails console'
alias ip="ifconfig | grep -B3 active | grep 'inet ' | awk '{print \$2}'"
alias pserver="open http://localhost:1337 && python -m SimpleHTTPServer 1337"
alias v="mvim"
alias a="atom"
alias mktar="tar -pvczf"
alias rubostage="git diff --name-only --cached | grep '\.rb' | xargs rubocop -a"
alias up="underscore pretty"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment