Skip to content

Instantly share code, notes, and snippets.

@marionava
Created September 13, 2017 16:45
Show Gist options
  • Save marionava/3c30b05e93b4e43d799378c56f0c0666 to your computer and use it in GitHub Desktop.
Save marionava/3c30b05e93b4e43d799378c56f0c0666 to your computer and use it in GitHub Desktop.
Git Aliases for zsh & bash
#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