Skip to content

Instantly share code, notes, and snippets.

@afiqiqmal
Forked from xmhafiz/Bash alias
Created November 3, 2017 06:34
Show Gist options
  • Save afiqiqmal/34e75c1b1ab00a45bc16be08a1ab34ba to your computer and use it in GitHub Desktop.
Save afiqiqmal/34e75c1b1ab00a45bc16be08a1ab34ba to your computer and use it in GitHub Desktop.
Some lazy bash aliases
#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