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 push='git push origin $(git rev-parse --abbrev-ref HEAD)' | |
alias pull='git pull --recurse-submodules origin $(git rev-parse --abbrev-ref HEAD)' | |
alias s="git status -s" | |
alias c="git commit -m " | |
alias a='git add . && git status -s' | |
alias l='git log --oneline --all --graph --decorate' | |
alias gb='git fetch && git checkout ' | |
alias undo='git checkout --' | |
alias reset='git reset --hard HEAD~1' | |
alias clean='git clean -dnx' |