-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
30 lines (30 loc) · 760 Bytes
/
dot_gitconfig
File metadata and controls
30 lines (30 loc) · 760 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
[user]
name = jsmcnair
# email = john@jsmcnair.com
email = john.mcnair@yellowdog.co
signingkey = 58B48A60DDA163E0
[core]
editor = nvim
excludesfile = ~/.gitignore_global
[alias]
pf = "push -f"
ca = "commit --amend"
[init]
defaultBranch = main
[push]
autoSetupRemote = true
[commit]
gpgsign = true
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[credential "https://github.com"]
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper = !/usr/bin/gh auth git-credential
[credential "ssh://git@github.com"]
helper = !/usr/bin/gh auth git-credential
[credential "ssh://git@gist.github.com"]
helper = !/usr/bin/gh auth git-credential