Created
May 11, 2018 17:08
-
-
Save jaesung2061/4b22ef3e4cde446bab61fb91ed4690ef to your computer and use it in GitHub Desktop.
aliases.sh
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
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