-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
43 lines (43 loc) · 958 Bytes
/
.gitconfig
File metadata and controls
43 lines (43 loc) · 958 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
[user]
name = hllvc
email = github@hllvc.com
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIClGTS44TwWwnZ5FcKpNKZh7cC9XQqRhk+vA6lOxRYmk
[includeIf "gitdir:~/.repos/stackguardian/"]
path = ~/.repos/stackguardian/.gitconfig
[core]
pager = less -x2
editor = nvim
sshCommand = ssh -i ~/.ssh/git_keys/personal_git.pub
; [includeIf "gitdir:~/.repos/stackguardian/"]
; path = ~/.repos/stackguardian/.gitconfig
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true
[tag]
gpgSign = true
[push]
default = simple
autoSetupRemote = true
[pull]
rebase = true
ff = only
[fetch]
prune = true
[merge]
ff = false
[grep]
lineNumber = true
[checkout]
defaultRemote = origin
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[init]
defaultBranch = develop
[credential]
helper = store