Last active
December 17, 2018 20:46
-
-
Save dawn360/5d9bcdc32133466c1304b6ee08b2a297 to your computer and use it in GitHub Desktop.
Laravel Commands
This file contains 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
php artisan make:controller -r -m=Post | |
AWS Composer update issue | |
https://getcomposer.org/doc/articles/troubleshooting.md#operation-timed-out-ipv6-issues- | |
https://github.com/composer/composer/issues/4247 | |
run on deploy | |
php artisan config:cache | |
https://github.com/alexeymezenin/laravel-best-practices | |
#git aliases | |
alias l="git log --oneline --graph" | |
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
alias vup="vagrant up" | |
#git | |
alias ga="git add" | |
alias gaa="git add ." | |
alias gc="git commit -m" | |
alias gp="git push" | |
alias gs="git status" | |
alias test="phpunit && behat" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment