Skip to content

Instantly share code, notes, and snippets.

@dblodorn
Created December 1, 2017 23:27
Show Gist options
  • Save dblodorn/9d42ae7e91ea636725679125787e032f to your computer and use it in GitHub Desktop.
Save dblodorn/9d42ae7e91ea636725679125787e032f to your computer and use it in GitHub Desktop.
Git Alias
# Git Alias
alias gs='git status'
alias gc='git checkout'
alias gb='git branch'
alias gm='git merge'
alias gp='git pull'
alias gclone='git clone'
alias gcm='git commit -m'
alias gpo='git push origin'
alias ga='git add .'
alias gaup='git add --update'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment