Last active
August 1, 2017 09:40
-
-
Save pratapvardhan/b0038af7c957bc620df3 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
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
alias gst='git status' | |
alias gl='git pull' | |
alias gp='git push' | |
alias gd='git diff | mate' | |
alias gau='git add --update' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' | |
alias gb='git branch' | |
alias gba='git branch -a' | |
alias gco='git checkout' | |
alias gcob='git checkout -b' | |
alias gcot='git checkout -t' | |
alias gcotb='git checkout --track -b' | |
alias glog='git log' | |
alias glogp='git log --pretty=format:"%h %s" --graph' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment