Skip to content

Instantly share code, notes, and snippets.

@Radostin
Last active August 29, 2015 14:18
Show Gist options
  • Save Radostin/97a5cf91ee979aa39ed9 to your computer and use it in GitHub Desktop.
Save Radostin/97a5cf91ee979aa39ed9 to your computer and use it in GitHub Desktop.
some development shortcuts in bashrc
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