Skip to content

Instantly share code, notes, and snippets.

@KevinTCoughlin
Created June 18, 2016 18:57
Show Gist options
  • Save KevinTCoughlin/d62fcc75e341205546f8ebff2f1ebf1b to your computer and use it in GitHub Desktop.
Save KevinTCoughlin/d62fcc75e341205546f8ebff2f1ebf1b to your computer and use it in GitHub Desktop.
Git Aliases
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