Created
September 13, 2017 16:45
-
-
Save marionava/3c30b05e93b4e43d799378c56f0c0666 to your computer and use it in GitHub Desktop.
Git Aliases for zsh & bash
This file contains 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 gs='git status' | |
alias ga='git add' | |
alias gb='git branch' | |
alias gc='git commit' | |
alias gd='git diff' | |
alias go='git checkout' | |
alias gt='git tag' | |
alias gpush='git push -u origin master' | |
alias gpull='git pull -u origin master' | |
alias grev='git remote -v' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment