Created
December 1, 2017 23:27
-
-
Save dblodorn/9d42ae7e91ea636725679125787e032f to your computer and use it in GitHub Desktop.
Git Alias
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
# 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