Last active
February 1, 2016 15:20
-
-
Save aguimaraes/f9b8489d155132e00f71 to your computer and use it in GitHub Desktop.
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
| 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