Skip to content

Instantly share code, notes, and snippets.

@douglascabral
Created September 15, 2017 19:21
Show Gist options
  • Save douglascabral/a0297d0e4c36cf144684b062be567bfc to your computer and use it in GitHub Desktop.
Save douglascabral/a0297d0e4c36cf144684b062be567bfc to your computer and use it in GitHub Desktop.
GIT Alias
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