-
-
Save afiqiqmal/34e75c1b1ab00a45bc16be08a1ab34ba to your computer and use it in GitHub Desktop.
Some lazy bash aliases
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
#laravel | |
alias pa="php artisan" | |
#git | |
alias gi="git init" | |
alias gs="git status" | |
alias ga="git add" | |
alias gc="git commit -m" | |
alias gac="git add .;git commit -m" | |
alias gp="git push" | |
alias gpull="git pull" | |
alias gclean="git checkout -- ." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment