Last active
August 25, 2018 07:48
-
-
Save mehranhadidi/822f978cb601b9263962b80c11a3c563 to your computer and use it in GitHub Desktop.
A bunch of custom aliases for myself
This file contains 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
#kerio | |
alias kerio='sudo /etc/init.d/kerio-kvc' | |
# git | |
alias gs='git status' | |
alias ga='git add' | |
alias gc='git commit -m' | |
alias gl='git log' | |
alias gp='git push' | |
alias nah='git reset --hard && git clean -df' | |
# laravel | |
alias pa='php artisan' | |
alias p='phpunit' | |
alias pf='phpunit --filter' | |
alias mfs='php artisan migrate:fresh --seed' | |
# symfony | |
alias sf='php bin/console' | |
# phpunit | |
alias phpunit='./vendor/bin/phpunit' | |
# copy terminal output | |
alias pbcopy="xclip -sel clip" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment