-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
104 lines (81 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[apply]
# Detect whitespace errors when applying a patch
whitespace = fix
[user]
name = Benjamin Dos Santos
email = [email protected]
signingkey = ssh-ed25519 ~/.ssh/id_ed25519.pub
[gpg]
format = ssh
[gpg "ssh"]
allowedSignersFile = ~/.ssh/allowed_signers
[color]
ui = true
branch = auto
diff = auto
interactive = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold # line info
old = red # deletions
new = green # additions
[color "status"]
added = yellow
changed = green
untracked = cyan
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[diff]
# Detect copies as well as renames
renames = copies
[diff "bin"]
# Use `hexdump` to diff binary files
textconv = hexdump -v -C
[core]
excludesfile = ~/.gitignore_global
# Make `git rebase` safer on OS X
# More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>
trustctime = false
# Prevent showing files whose names contain non-ASCII symbols as unversioned.
# http://michael-kuehnel.de/git/2014/11/21/git-mac-osx-and-german-umlaute.html
precomposeunicode = false
commitGraph = true
[branch]
autosetuprebase = always
[merge]
summary = true
# Include summaries of merged commits in newly created merge commit messages
log = true
[rebase]
autosquash = true
[push]
default = current
# Make `git push` push relevant annotated tags when pushing branches out.
followTags = true
[commit]
template = ~/.gitmessage
gpgsign = true
[gc]
auto = 1
writeCommitGraph = true
[credential]
helper = osxkeychain
[pager]
diff = diff-so-fancy | less --tabs=4 -RFX
show = diff-so-fancy | less --tabs=4 -RFX
[hub]
protocol = https
[pull]
rebase = true
[fetch]
writeCommitGraph = true
[log]
follow = true