Skip to content

Instantly share code, notes, and snippets.

@mwmcode
Created February 14, 2016 10:35
Show Gist options
  • Save mwmcode/765fb68a55d2d2970dce to your computer and use it in GitHub Desktop.
Save mwmcode/765fb68a55d2d2970dce to your computer and use it in GitHub Desktop.
## Homestead
##----------
alias hu="homestead up"
alias hh="homestead halt"
alias he="homestead edit"
alias hs="homestead ssh"
alias hp="homestead provision"
alias tinker="php artisan tinker"
alias subl="open -a /Applications/Sublime\ Text.app"
## Git
##----
alias gi='git init'
alias gs='git status'
alias ga='git add'
alias gc='git commit -m'
alias gd='git diff'
alias gl='git log --oneline --all --graph --decorate'
alias gls='git log --stat'
alias gb='git branch'
alias gco='git checkout'
alias gcb='git checkout -b'
alias gp='git push'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment