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
# BASH/ZSH ALIASES FOR THE LAZY DEVELOPER | |
## Git Workflow Aliases | |
### Push current branch to origin | |
alias push='git push origin $(git rev-parse --abbrev-ref HEAD)' | |
### Pull current branch with submodules | |
alias pull='git pull --recurse-submodules origin $(git rev-parse --abbrev-ref HEAD)' | |
### Show git status in short format | |
alias s="git status -s" | |
### Commit with message (usage: c "commit message") |