Last active
June 4, 2019 18:01
-
-
Save ecarlisle/9d1ea065c5ec11d9675a81b8082ca646 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
alias ga="git add" | |
alias gap="git add -p" | |
alias gb="git branch" | |
alias gba="git branch all" | |
alias gc="git commit" | |
alias gcm="git commit -m" | |
alias gco="git checkout" | |
alias gcl="git clone" | |
alias gd="git diff" | |
alias gf="git fetch" | |
alias gpull="git pull" | |
alias gpush="git push" | |
alias gs="git status" | |
alias gst="git stash" | |
alias gsl="git stash list" | |
alias gsp="git stash pop" | |
alias gsa="git stage apply" | |
alias gl="git log" | |
alias gm="git merge" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment