Last active
November 6, 2017 01:38
-
-
Save xmhafiz/7053472e20b4f7d4dfaa32a56a9b5d97 to your computer and use it in GitHub Desktop.
Some lazy bash aliases (append to ~/.bash_profile)
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
#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 -- ." | |
alias gb="git branch" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment