dots/default.gitconfig
Yongmin Hong e839c265f8
gitconfig: git config --global rerere.enabled true
Summary:
Ref [pro git](https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project).

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

Test Plan: `git rerere` with forced merge conflict?

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

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

39 lines
851 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
[rerere]
enabled = true