-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
73 lines (72 loc) · 1.51 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
[user]
name = Mike Bowman
email = [email protected]
signingkey = B50D67EACD725134
[alias]
co = checkout
br = branch --sort=-committerdate
ci = commit
st = status
s = status -s
last = log -1 HEAD
amend = commit --amend --no-edit
diffs = diff --staged
[filter "lfs"]
required = true
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
clean = git-lfs clean -- %f
[push]
default = simple
[web]
browser = chrome
[core]
excludesfile = /Users/mikebowman/.gitignore
editor = nvim --noplugin
; pager = delta
; pager = diff-so-fancy | less --tabs=4 -RFX
; [url "[email protected]:"]
; insteadOf = https://github.com/
[diff]
; tool = default-difftool
colorMoved = default
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
; [pager]
; status = false
; log = false
; diff = false
# This next lines include Netlify's Git Credential Helper configuration in your Git configuration.
[include]
path = /Users/mikebowman/.netlify/helper/git-config
[gpg]
program = /usr/local/bin/gpg
[color]
ui = true
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = 11
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse
[pull]
rebase = false
; [commit]
; gpgsign = true
[hub]
protocol = ssh
[init]
defaultBranch = main
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
light = false
[merge]
conflictstyle = diff3