Created
February 7, 2020 08:27
-
-
Save ALiangLiang/faf4f27edc963a89642f25af71e9167d to your computer and use it in GitHub Desktop.
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 aliases | |
alias g='git' | |
alias gbr='git branch' | |
alias ga='git add' | |
alias gc='git commit' | |
alias gs='git status' | |
alias gp='git push' | |
alias gd='git diff' | |
alias gl='git log' | |
alias gck='git checkout' | |
alias gpl='git pull' | |
alias gm='git merge' | |
alias gmfo='git merge --ff-only' | |
alias gt='git tag' | |
alias grm='git rm' | |
alias gst='git stash' | |
alias grs='git reset' | |
alias gcl='git clone' | |
alias grb='git rebase' | |
alias gmv='git mv' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment