Created
September 15, 2017 19:21
-
-
Save douglascabral/a0297d0e4c36cf144684b062be567bfc to your computer and use it in GitHub Desktop.
GIT Alias
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 cmt='git add .; git commit -am' | |
alias cmtf='cmt "First commit"' | |
alias push='git push' | |
alias pull='git pull' | |
alias psh='git push origin' | |
alias pll='git pull origin' | |
alias ckout='git checkout' | |
alias st='git status' | |
alias mmd='git checkout master && git merge dev' | |
alias lg='git log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment