-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
51 lines (46 loc) · 972 Bytes
/
gitconfig
File metadata and controls
51 lines (46 loc) · 972 Bytes
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
[color]
ui = true
[github]
user = thiskevinwang
[push]
default = tracking
# git config --global push.autoSetupRemote true
autoSetupRemote = true
[user]
name = Kevin Wang
email = kwangsan@gmail.com
[commit]
gpgsign = false
# Machine-specific GPG settings (create ~/.gitconfig.local with your signing key)
[includeIf "gitdir:~/"]
path = ~/.gitconfig.local
[pager]
branch = false
diff = false
log = false
[gpg]
program = /opt/homebrew/bin/gpg
[difftool]
prompt = false
trustExitCode = true
[mergetool]
prompt = false
[core]
editor = nvim
page = false
excludesFile = ~/.gitignore
[credential "https://github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[init]
defaultBranch = main
[pull]
ff = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true