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
| # git | |
| alias ga='git add' | |
| alias gd='git diff' | |
| alias gp='git push' | |
| alias gpo='git push origin' | |
| alias gc='git commit' | |
| alias gca='git commit -a' | |
| alias gcm='git commit -m' | |
| alias gmo='git merge origin' | |
| alias gco='git checkout' |