dots/default.gitconfig
Yongmin Hong 761a5d6c1f
gitconfig: git config --global format.signOff true
Summary:
Ref [man git config](https://git-scm.com/docs/git-config#Documentation/git-config.txt-formatsignOff).

Also disables aliases with `-s` now that config takes over

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: Apply patch and `git cm`

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D100
2024-05-19 15:10:29 +09:00

37 lines
825 B
Text

# Copyright (C) 2016 Hong Yongmin <https://revi.xyz>
# SPDX-License-Identifier: Apache-2.0
[user]
name = Yongmin Hong
email = revi@omglol.email
signingkey = EA100E94
[gitreview]
username = revi
[core]
editor = nano
quotepath = false
[include]
path = ~/.gitaliases
[credential]
helper = 'store'
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[format]
signOff = true
[sendemail]
from = 'Yongmin Hong <revi@omglol.email>'
smtpserver = smtp.fastmail.com
smtpuser = revi@omglol.email
smtpencryption = ssl
smtpserverport = 465
smtpAuth = 'PLAIN'
[init]
defaultBranch = master
[tag]
forceSignAnnotated = true