dots/default.gitconfig
Yongmin Hong cac61e049a
gitconfig: add credential-helper store
Summary:
See http://go/man/git/credential-store

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

Test Plan: Remove the config bar and check git asking for credential. Now patch it and test it again to verify.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D80
2024-05-12 19:04:22 +09:00

32 lines
714 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
[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