Skip to content

Instantly share code, notes, and snippets.

@benhoIIand
Last active February 2, 2016 16:45
Show Gist options
  • Select an option

  • Save benhoIIand/4596493 to your computer and use it in GitHub Desktop.

Select an option

Save benhoIIand/4596493 to your computer and use it in GitHub Desktop.
Git Setup
[user]
name = YOUR NAME
email = YOUR EMAIL
[core]
# see the other file in this gist
excludesfile = /Users/USERNAME/.gitignore
[color]
# colors all up in your git
ui = 1
[alias]
ac = !git add -A && git commit -m
cl = clone
ci = commit -m
amend = commit --amend
co = checkout
st = status
br = branch
cle = !git checkout . && git clean -df
undo = reset --soft HEAD~1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment