Dotfiles/.gitconfig
2024-08-09 15:08:47 -04:00

37 lines
665 B
INI

# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Jordan Bancino
email = jordan@bancino.net
signingkey = ~/.ssh/id_ed25519.personal.pub
[push]
autoSetupRemote = yes
followtags = true
[credential]
helper = store
[pull]
rebase = false
[init]
defaultBranch = master
[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
[http]
postBuffer = 157286400