-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
56 lines (47 loc) · 1.05 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
# Use CRLF automatically from input. Only use on repositories from Windows.
#git config core.autocrlf input
[user]
email = [email protected]
name = Kevin Whalen
[push]
default = simple
[core]
editor = vim
[credential]
helper = cache --timeout=3600
[color]
ui = auto
# The accepted values are two of
# normal, black, red, green, yellow, blue, magenta, cyan, and white;
# and optionally one of
# bold, dim, ul, blink, and reverse.
# If two colors are given the first is the foreground and the second is the
# background.
[color "branch"]
current = green
local = normal
remote = red
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = green
changed = red
untracked = cyan
[color.blame]
highlightRecent = blue,12 month ago,white,1 month ago,red
[blame]
coloring = highlightRecent
blankboundary = true
[diff]
#tool = vimdiff
tool = meld
[log]
follow = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true