Dotfiles/.gitconfig

36 lines
623 B
INI
Raw Normal View History

2024-01-06 14:19:39 +00:00
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Jordan Bancino
email = jordan@bancino.net
2024-04-02 13:00:13 +00:00
signingkey = ~/.ssh/id_ed25519.pub
2024-01-06 14:19:39 +00:00
[push]
autoSetupRemote = yes
2024-02-16 21:28:23 +00:00
followtags = true
[credential]
helper = store
2024-01-14 19:23:50 +00:00
[pull]
rebase = false
[init]
defaultBranch = master
2024-02-16 21:02:12 +00:00
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
prune = true
[receive]
fsckObjects = true
[url "git.github.com:"]
insteadOf = "https://github.com"
[branch]
sort = -comitterdate
[diff]
context = 10
colorMoved = default
[gpg]
format = ssh
[commit]
gpgsign = true
[tag]
gpgsign = true