Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Last active February 1, 2016 15:20
Show Gist options
  • Select an option

  • Save aguimaraes/f9b8489d155132e00f71 to your computer and use it in GitHub Desktop.

Select an option

Save aguimaraes/f9b8489d155132e00f71 to your computer and use it in GitHub Desktop.
alias migrate="php artisan migrate"
alias migrate-seed="php artisan migrate --seed"
alias seed="php artisan db:seed"
alias rollback="php artisan migrate:rollback"
alias commit="git commit -m"
alias push="git push"
alias pull="git pull"
alias add="git add"
alias status="git status"
alias git-graph="git log --graph --oneline --decorate --all"
alias git-log-files="git log --name-status"
alias migrate="php artisan migrate --seed"
alias mreset="php artisan migrate:reset"
alias dbseed="php artisan db:seed --class="
alias serve="php artisan serve"
alias update="sudo apt-get update && sudo apt-get dist-upgrade -y"
# Only load Liquid Prompt in interactive shells, not from a script or from scp
[[ $- = *i* ]] && source ~/liquidprompt/liquidprompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment