Last active
December 12, 2015 09:48
-
-
Save Andrew8xx8/4754002 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
| alias gst='git status' | |
| alias gdf='git diff HEAD~1 HEAD' | |
| alias glg='git log --pretty=format:"%h %Cblue%ar %Cgreen%an%Creset: %s %Cred%d"' | |
| alias gco='git checkout' | |
| alias gci='git commit' | |
| alias gcim='git commit -m' | |
| alias gcia='git commit --amend' | |
| alias grb='git rebase' | |
| alias girb='git rebase -i' | |
| alias gbr='git branch' | |
| alias gup='git pull --rebase' | |
| alias be='bundle exec' | |
| alias bi='bundle install' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment