-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
84 lines (62 loc) · 1.54 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
[user]
name = Jeff Jewiss
email = jeff@jeffjewiss.com
signingkey = jeff@jeffjewiss.com
[alias]
loq = log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
pr = "!f() { git fetch origin pull/$1/head:pr-$1 && git checkout pr-$1; }; f"
[branch]
autosetuprebase = always
[color]
ui = auto
[core]
pager = delta
quotepath = false
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
trustctime = false
excludesfile = ~/.gitignore
[interactive]
diffFilter = delta --color-only
[apply]
whitespace = nowarn
[color]
ui = auto
[credential]
helper = osxkeychain
[merge]
summary = true
[difftool]
prompt = false
[merge]
log = true
[push]
default = simple
[rerere]
enabled = 1
[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"
[url "git://github.com/"]
insteadOf = "github:"
[url "git@gist.github.com:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"
[url "git://gist.github.com/"]
insteadOf = "gist:"
[url "git@heroku.com:"]
insteadOf = "heroku:"
[commit]
gpgsign = true
[github]
user = jeffjewiss
[ghi]
token = !security find-internet-password -a jeffjewiss -s github.com -l 'ghi token' -w
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main