Last active
November 15, 2019 11:22
-
-
Save contivero/157c821a77ffad2f8b36a53220cf28a0 to your computer and use it in GitHub Desktop.
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 go="git checkout" | |
alias gor="git checkout release" | |
alias god="git checkout develop" | |
alias gom="git checkout master" | |
alias gs="git s" | |
alias gc="git commit" | |
alias gca="git commit --amend" | |
alias gdc="git diff --cached" | |
alias gd="git diff" | |
alias gr="git rebase" | |
alias gri="git rebase -i" | |
alias gb="git branch" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment