Created
June 18, 2016 18:57
-
-
Save KevinTCoughlin/d62fcc75e341205546f8ebff2f1ebf1b to your computer and use it in GitHub Desktop.
Git Aliases
This file contains 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
c = checkout | |
d = diff | |
ds = diff --staged | |
l = log --all --graph --oneline --decorate | |
s = status --short --branch | |
g = grep --break --heading --line-number | |
ff = merge --ff-only | |
puff = pull --ff-only | |
purr = pull --rebase | |
mnc = merge --no-ff --no-commit | |
ignore = update-index --assume-unchanged | |
unignore = update-index --no-assume-unchanged | |
ignored = !git ls-files -v | grep '^[[:lower:]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment