Created
February 24, 2019 23:33
-
-
Save RobertMatkulcik/49a9b2c902029bc1d62cf6d1a28069b2 to your computer and use it in GitHub Desktop.
Yablko bashrc aliases
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
# TERMINAL | |
alias ll="ls -FlAGh" | |
alias c="clear" | |
alias h="cd ~/" | |
# APPS | |
alias subl="open -a 'Sublime Text 3'" | |
alias storm="open -a 'PhpStorm'" | |
alias sublime="subl" | |
# ARTISAN | |
alias art="php artisan" | |
alias artisan="php artisan" | |
alias migrate="php artisan migrate" | |
alias mig:r="php artisan migrate:reset" | |
alias mig:roll="php artisan migrate:rollback" | |
alias serve="php artisan serve" | |
alias rl="php artisan route:list" | |
alias g:c="php artisan make:controller" | |
alias g:m="php artisan make:migration" | |
alias g:mp="php artisan make:migration:pivot" | |
alias g:ms="php artisan make:migration:schema" | |
alias g:mod="php artisan make:model" | |
alias g:prov="php artisan make:provider" | |
# COMPOSER | |
alias cu="composer update" | |
alias ci="composer install" | |
alias cdump="composer dump-autoload -o" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment