-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitconfig.sample
36 lines (35 loc) · 1.32 KB
/
.gitconfig.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[core]
editor = nvim
[commit]
# https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits
gpgsign = false
[filter "lfs"]
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-filterltdrivergtclean
# https://www.atlassian.com/git/tutorials/git-lfs
# http://shuhrat.github.io/programming/git-lfs-tips-and-tricks.html
required = true
clean = git-lfs clean -- %f
process = git-lfs filter-process
smudge = git-lfs smudge -- %f
[gpg]
# https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key
#program = gpg
[http]
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-httpsslVerify
# https://stackoverflow.com/questions/9008309/how-do-i-set-git-ssl-no-verify-for-specific-repos-only
sslVerify = false
[init]
defaultBranch = main
[pager]
# https://stackoverflow.com/questions/48341920/git-branch-command-behaves-like-less/48342309
branch = false
[pull]
rebase = true
[push]
autoSetupRemote = true
[user]
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-username
name = IceHe
email = [email protected]
# https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key
#signingkey = [OPTIONAL_SIGNING_KEY]