-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
90 lines (71 loc) · 1.72 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
[credential]
helper = osxkeychain
[user]
name = "Full Name"
email = [email protected]
[alias]
co = checkout
checkoutr = checkout
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = 11
frag = magenta bold
old = red bold
new = green bold
commit = yellow bold
whitespace = red reverse
[color "status"]
added = green
changed = yellow
untracked = cyan
[diff]
# Detect copies as well as renames
renames = copies
# Enable an experimental heuristic that shifts the hunk boundary in an
# attempt to make the resulting patch easier to read.
indentHeuristic = true
[merge]
# Include summaries of merged commits in newly created merge commit messages
log = true
[diff "bin"]
# Use `hexdump` to diff binary files
textconv = hexdump -v -C
[fetch]
prune = true
[help]
# Automatically correct and execute mistyped commands
autocorrect = 1
[pull]
rebase = true
[rerere]
enabled = true
[push]
# Use the Git 1.x.x default to avoid errors on machines with old Git
# installations. To use `simple` instead, add this to your `~/.extra` file:
# `git config --global push.default simple`. See http://git.io/mMah-w.
default = simple
# Make `git push` push relevant annotated tags when pushing branches out.
followTags = true
[core]
pager = diff-so-fancy | less --tabs=4 -RFX
[diff-so-fancy]
changeHunkIndicators = false
stripLeadingSymbols = false
useUnicodeRuler = false
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[advice]
skippedCherryPicks = false
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true