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
| 1. alias g='git' | |
| 2. alias gst='git status' | |
| 3. alias gss='git status -s' | |
| 4. alias gaa='git add -A' (has to be changed manually in `~/.oh-my-zsh/plugins/git/git.plugin.zsh`) | |
| 5. alias gau='git add -u' (has to be added manually in `~/.oh-my-zsh/plugins/git/git.plugin.zsh`) | |
| 6. alias gcmsg='git commit -m' | |
| 7. alias ggpull='git pull origin $(current_branch)' | |
| 8. alias ggpush='git push origin $(current_branch)' |