-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
52 lines (50 loc) · 1.09 KB
/
.gitconfig
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
42
43
44
45
46
47
48
49
50
51
52
# gitconfig template, populated by bootstrap file
# this means I keep my name and email off github
#
[hub]
protocol = ssh
[user]
name = Adam Howard
email = [email protected]
[credential]
helper = osxkeychain
[alias]
type = cat-file -t
dump = cat-file -p
count = !git shortlog -sn
[color]
diff = auto
status = auto
branch = auto
ui = true
[core]
excludesfile = ~/.gitignore
editor = code --wait
trustctime = false
ignorecase = true
[apply]
whitespace = nowarn
[mergetool]
keepBackup = false
[merge]
conflictstyle = diff3
[difftool]
prompt = false
[help]
autocorrect = 1
[push]
# See `git help config` (search for push.default)
# for more information on different options of the below setting.
#
# Setting to git 2.0 default to suppress warning message
default = simple
[status]
# showUntrackedFiles = no
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[diff]
indentHeuristic = on
[branch]
sort = -authordate