-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
48 lines (48 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
[user]
name = John Kurkowski
email = [email protected]
logallrefupdates = true
[core]
attributesfile = ~/.gitattributes
excludesfile = ~/.gitignore
ignorecase = false
pager = delta
[color]
ui = true
[delta]
hyperlinks = true
navigate = true
[alias]
cbr = symbolic-ref --short HEAD
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
stash-popf = !sh -c 'git stash show -p | git apply && git stash drop'
[interactive]
diffFilter = delta --color-only
[diff]
colorMoved = default
[diff "plist"]
textconv = plutil -convert xml1 -o -
[diff "scpt"]
textconv = osadecompile
binary = true
[merge]
conflictstyle = diff3
[mergetool]
prompt = false
[grep]
patternType = perl
lineNumber = true
[push]
default = simple
followTags = true
[pull]
rebase = true
[rebase]
autosquash = true
autostash = true
instructionFormat = %d %s (%cr) <%an>
preserve-merges = true
[rerere]
enabled = true
[status]
showUntrackedFiles = all