forked from holman/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig.symlink
41 lines (39 loc) · 1.15 KB
/
gitconfig.symlink
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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 = [email protected]
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