Created
January 23, 2014 18:44
-
-
Save lazd/8584410 to your computer and use it in GitHub Desktop.
Git aliases
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 gs="git status" | |
| alias gc="git commit" | |
| alias gca="git commit --amend" | |
| alias ga="git add" | |
| alias gp="git push" | |
| alias gr="git pull --rebase" | |
| alias gl="git log" | |
| alias gd="clear; git diff" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment