Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joelbutcher/09aafa82c2bdadc671f4b130d59d5343 to your computer and use it in GitHub Desktop.
Save joelbutcher/09aafa82c2bdadc671f4b130d59d5343 to your computer and use it in GitHub Desktop.
Git config
[alias]
lg = log --graph --decorate --branches --oneline --remotes --tags --all
s = status
co = checkout
ci = commit -m
cdiff = diff --cached
yoink = cherry-pick
ff = merge --ff-only
unchanged = update-index --assume-unchanged
changed = update-index --no-assume-unchanged
cleanup = fetch --all --prune
pr = request-pull master ./
[status]
submodulesummary = true
[color]
ui = true
[core]
editor = vim
[color "branch"]
current = yellow bold
remote = cyan bold
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment