Skip to content

Instantly share code, notes, and snippets.

@nervetattoo
Created December 14, 2012 10:01
Show Gist options
  • Save nervetattoo/4284221 to your computer and use it in GitHub Desktop.
Save nervetattoo/4284221 to your computer and use it in GitHub Desktop.
gitconfig
[core]
editor = `which vim`
whitespace = trailing-space,space-before-tab
autocrlf = false
excludesfile = ~/.gitignore-global
[alias]
st = status
ci = commit
co = checkout
cm = cherry -v master
p = log --decorate --stat --graph --pretty=format:'%C(yellow)%h%Creset (%ar - %Cred%an%Creset), %s%n'
[user]
name = <name>
email = <email (same as github)>
[github]
user = <username>
token = <token>
[color]
ui = auto
interactive = auto
[push]
default = current
[merge]
summary = true
[diff]
mnemonicprefix = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment