-
-
Save cirpo/86d43ef8ef87b4cfd031 to your computer and use it in GitHub Desktop.
This file contains 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 ck='git checkout' | |
alias ckb='git checkout -b' | |
alias push='git push' | |
alias pushf='git push -f' | |
alias pull='git pull' | |
alias ci='git commit' | |
alias align='git pull --rebase origin master && git pull --rebase origin develop' | |
alias fetch='git fetch' | |
alias undo='git reset --hard HEAD' | |
alias dmb='git branch --merged | xargs git branch -d' | |
alias glog='git log --oneline --decorate' | |
alias st='git status -sb' | |
alias gdiff='git diff --word-diff' | |
alias tag='git tag' | |
alias master='git checkout master' | |
alias dev='git checkout develop' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This aliases would be cool too: