Skip to content

Instantly share code, notes, and snippets.

@schacon
Created August 20, 2009 18:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save schacon/171255 to your computer and use it in GitHub Desktop.
Save schacon/171255 to your computer and use it in GitHub Desktop.
my .gitconfig file
[user]
name = Scott Chacon
email = schacon@gmail.com
[alias]
serve = !git daemon --reuseaddr --verbose --base-path=. --export-all ./.git
unstage = reset HEAD
lol = log --pretty=oneline --abbrev-commit --graph --decorate
branches = !git-branches
st = status
[gui]
fontui = -family \"Lucida Sans\" -size 13 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family Monaco -size 12 -weight normal -slant roman -underline 0 -overstrike 0
[imap]
folder = "[Gmail]/Drafts"
host = imaps://imap.gmail.com
user = schacon@gmail.com
port = 993
sslverify = false
[color]
ui = true
[help]
autocorrect = 1
[filter "media"]
clean = "/Users/schacon/projects/git-media/bin/git-media filter-clean"
smudge = "/Users/schacon/projects/git-media/bin/git-media filter-smudge"
@erikbgithub
Copy link

Why not put this in a dot-files repo with .bashrc, .vimrc and so on?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment