-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
60 lines (60 loc) · 1.3 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
[user]
email = [email protected]
name = Michał Włodarczyk
[alias]
s = status -u
debug-ssh = -c core.sshCommand=\"ssh -vvv\" fetch
add-deleted = "!f() { git status -uno --porcelain=2 | grep -P '^1 \\.D' | cut -d ' ' -f 9- | xargs -I {} git add {}; }; f"
b = rev-parse --abbrev-ref HEAD
l = log --oneline --decorate
[push]
default = current
[pull]
rebase = true
[diff]
compactionHeuristic = true
renamelimit = 999999
colorMoved = plain
[rerere]
enabled = true
[merge]
ff = false
renamelimit = 999999
lineNumber = true
conflictstyle = diff3
[grep]
patternType = perl
lineNumber = true
[color "grep"]
linenumber = green
match = yellow bold
filename = magenta
[color "diff"]
newMoved = "#666512"
oldMoved = "#8c1712"
[pager]
log = diff-highlight | less
show = diff-highlight | less
diff = diff-highlight | less
[interactive]
diffFilter = diff-highlight
[advice]
statusHints = false
[core]
excludesfile = ~/.gitignore-global
[color]
ui = true
[color "diff-highlight"]
oldNormal = "red black"
oldHighlight = "black red"
newNormal = "green black"
newHighlight = "black green"
[rebase]
autoSquash = true
autoStash = true
[commit]
gpgSign = true
[log]
date=iso8601
[gpg]
program = gpg2