Yongmin Hong
221d389edf
Summary: Per [git.vger.kernel.org](https://lore.kernel.org/git/xmqq1q643whe.fsf@gitster.g/). Fixes git patch quoting problems, as documented in https://we.phorge.it/T15805. See [git docs](https://git-scm.com/docs/git-config#Documentation/git-config.txt-corequotePath). Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: apply the patch, run `git format-patch` with non-ascii file names, verify unicodes works as intended. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D88
33 lines
734 B
Text
33 lines
734 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
|
|
[sendemail]
|
|
smtpserver = smtp.fastmail.com
|
|
smtpuser = revi@omglol.email
|
|
smtpencryption = tls
|
|
smtpserverport = 587
|
|
[init]
|
|
defaultBranch = master
|
|
[tag]
|
|
forceSignAnnotated = true
|