Skip to content

Instantly share code, notes, and snippets.

@kevinfiol
Last active August 10, 2022 15:27
Show Gist options
  • Save kevinfiol/740770a3d25e2dd65c0768340597ea01 to your computer and use it in GitHub Desktop.
Save kevinfiol/740770a3d25e2dd65c0768340597ea01 to your computer and use it in GitHub Desktop.
base git configs
[includeIf "gitdir/i:<path>"]
path = .gitconfig-kevinfiol
[alias]
lg = log --pretty=oneline --abbrev-commit
[pull]
rebase = false
[core]
# enable if on windows
# autocrlf = true
eol = lf
[credential "helperselector"]
selected = <no helper>
[commit]
gpgSign = true
[tag]
gpgSign = true
# [gpg]
# program = C:\\Program Files (x86)\\GnuPG\\bin\\gpg.exe
[user]
name = 'kevinfiol'
email = "me@kevinfiol.com"
[credential]
username = 'kevinfiol'
[core]
sshCommand = "ssh -i ~/.ssh/kevinfiol"
[user]
signingkey = <gpg short id>
[commit]
gpgSign = true
[tag]
gpgSign = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment