Skip to content

Instantly share code, notes, and snippets.

@bgallagh3r
Forked from JeffreyWay/.bash_profile
Created May 8, 2013 18:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bgallagh3r/5542362 to your computer and use it in GitHub Desktop.
Save bgallagh3r/5542362 to your computer and use it in GitHub Desktop.
# laravel new-app
alias laravel="git clone -o laravel -b develop https://github.com/laravel/laravel.git"
alias artisan="php artisan"
alias migrate="php artisan migrate"
alias serve="php artisan serve"
alias dump="php artisan dump"
alias t="phpunit"
# Generators Package
alias g:c="php artisan generate:controller"
alias g:m="php artisan generate:model"
alias g:v="php artisan generate:view"
alias g:mig="php artisan generate:migration"
alias g:t="php artisan generate:test"
alias g:r="php artisan generate:resource"
alias g:s="php artisan generate:scaffold"
alias g:f="php artisan generate:form"
# Git
alias ga="git add"
alias gaa="git add ."
alias gc="git commit -m"
alias gp="git push"
alias gs="git status"
alias gl="git log"
@bgallagh3r
Copy link
Author

If only these were available for Powershell as well. A project for later perhaps!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment