Last active
August 29, 2015 14:18
-
-
Save Radostin/97a5cf91ee979aa39ed9 to your computer and use it in GitHub Desktop.
some development shortcuts in bashrc
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
export PATH="$PATH:~/.composer/vendor/bin" | |
#development aliases | |
alias vm="clear && homestead ssh" | |
alias a="clear && php artisan" | |
alias g="clear && gulp watch" | |
alias cm="clear && git add -A && git commit -m" | |
alias gp="clear && git push origin" | |
alias cr="clear && cept run" | |
alias cu="clear && cept run unit" | |
alias ci="clear && cept run integration" | |
alias ci="clear && cept run functional" | |
alias cgc="clear && cept generate:cept" | |
alias cgt="clear && cept generate:test" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment