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
#when you want to branch and checkout the same branch in one line => gitbc feature/xyz | |
gbc() { git branch "$@" && git checkout "$@"; } | |
#git status is too much typing | |
gs() { git status; } | |
#git add all is too much typing | |
gaa() { git add -A; } | |
#git push is too much typing | |
gpo() { git push -u origin "$@"; } | |
#git status is too much typing | |
gs() { git status; } |