From dda1e202886004b976097530278a13d9b042d231 Mon Sep 17 00:00:00 2001 From: Matt Emborsky Date: Mon, 14 Jan 2013 18:24:23 -0500 Subject: [PATCH] Move gitconfig.symlink to gitconfig.symlink.example. Setup gitconfig to be bootstrapped without holman's stuff. --- git/gitconfig.symlink | 41 ----------------------------------- git/gitconfig.symlink.example | 31 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 41 deletions(-) delete mode 100644 git/gitconfig.symlink create mode 100644 git/gitconfig.symlink.example diff --git a/git/gitconfig.symlink b/git/gitconfig.symlink deleted file mode 100644 index 548d421a823..00000000000 --- a/git/gitconfig.symlink +++ /dev/null @@ -1,41 +0,0 @@ -# Sample gitconfig -# -# You probably want to change the [user] section here since you are not me. -# Also search in this file for FIXME- you'll want to well, fix them. - -[hub] - protocol = https -[user] - name = Zach Holman - email = zach@zachholman.com - helper = /opt/boxen/bin/boxen-git-credential - # FIXME: You'll want the `helper` line below; delete the one above. - # helper = osxkeychain -[alias] - co = checkout - promote = !$ZSH/bin/git-promote - wtf = !$ZSH/bin/git-wtf - rank-contributers = !$ZSH/bin/git-rank-contributers - count = !git shortlog -sn -[color] - diff = auto - status = auto - branch = auto - ui = true -[core] - excludesfile = /opt/boxen/config/git/gitignore - # FIXME: You'll want the `excludesfile` line below; delete the one above. - # excludesfile = ~/.gitignore - editor = vim -[apply] - whitespace = nowarn -[mergetool] - keepBackup = false -[difftool] - prompt = false -[help] - autocorrect = 1 - -# FIXME: You can nuke all of this on your machine. -[credential] - helper = /opt/boxen/bin/boxen-git-credential \ No newline at end of file diff --git a/git/gitconfig.symlink.example b/git/gitconfig.symlink.example new file mode 100644 index 00000000000..41208809198 --- /dev/null +++ b/git/gitconfig.symlink.example @@ -0,0 +1,31 @@ +# Sample gitconfig +# + +[hub] + protocol = https +[user] + name = AUTHORNAME + email = AUTHOREMAIL + helper = osxkeychain +[alias] + co = checkout + promote = !$ZSH/bin/git-promote + wtf = !$ZSH/bin/git-wtf + rank-contributers = !$ZSH/bin/git-rank-contributers + count = !git shortlog -sn +[color] + diff = auto + status = auto + branch = auto + ui = true +[core] + excludesfile = ~/.gitignore + editor = vim +[apply] + whitespace = nowarn +[mergetool] + keepBackup = false +[difftool] + prompt = false +[help] + autocorrect = 1