Last active
September 11, 2023 13:51
-
-
Save Mohamed-Ghareeb/0cc3520c33d390e97c1aa3b04c60a4ed 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
| # laravel Aliases | |
| alias migrate='php artisan migrate' | |
| alias rollback='php artisan migrate:rollback' | |
| alias mfseed='php artisan migrate:fresh --seed' | |
| alias seed='php artisan db:seed' | |
| alias mfresh='php artisan migrate:fresh' | |
| alias a='php artisan' | |
| alias model='php artisan make:model' | |
| alias controller='php artisan make:controller' | |
| alias migration='php artisan make:migration' | |
| alias dump='composer dumpautoload' | |
| # git Aliases | |
| alias add='git add .' | |
| alias commit='git add . && git commit -m' | |
| alias pull='git pull origin' | |
| alias push='git push origin' | |
| alias merge='git merge' | |
| alias checkout='git checkout' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment