Skip to content

Instantly share code, notes, and snippets.

@xmhafiz
Last active November 6, 2017 01:38
Show Gist options
  • Save xmhafiz/7053472e20b4f7d4dfaa32a56a9b5d97 to your computer and use it in GitHub Desktop.
Save xmhafiz/7053472e20b4f7d4dfaa32a56a9b5d97 to your computer and use it in GitHub Desktop.
Some lazy bash aliases (append to ~/.bash_profile)
#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