Created
December 26, 2018 15:22
-
-
Save niradler/726a0bf8fb2424782753a52d786b2ab8 to your computer and use it in GitHub Desktop.
add alias mac sudo nano ~/.bash_profile
This file contains 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 l='ls -lah' | |
alias gac='git add . && git commit -am' | |
alias gi='git init && gac "init"' | |
alias gc='git checkout' | |
alias glo='git pull origin' | |
alias gd='gc develop && glo develop && gc master && glo master && git merge develop && git push' | |
alias prt='prettier --write ./*.js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment