Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jaesung2061/4b22ef3e4cde446bab61fb91ed4690ef to your computer and use it in GitHub Desktop.
Save jaesung2061/4b22ef3e4cde446bab61fb91ed4690ef to your computer and use it in GitHub Desktop.
aliases.sh
alias ga="git add"
alias gaa="git add ."
alias gc="git commit -m"
alias gp="git push"
alias gs="git status"
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias gap="git add . && git commit -m 'work in progress' && git push"
alias gitignore="git rm -r --cached . && git add . && git commit -m '.gitignore is now working'"
alias cda="composer dump-autoload"
alias art="php artisan"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment