1
0
Fork 0

gitconfig: sort alphabetically

This commit is contained in:
Pratham Patel 2024-03-26 08:31:29 +05:30
parent 0844a0066f
commit 355dd7f26a
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 29 additions and 28 deletions

View File

@ -1,20 +1,11 @@
[credential]
helper = store
[core]
editor = nvim
compression = 9
fsmonitor = true # no workey on penguin
[advice]
addIgnoredFile = false
[blame]
date = iso8601
showEmail = true
[checkout]
workers = 0 # < 1 means use all **logical** cores
thresholdForParallelism = 1000 # perform parallel checkout only if files are > 1000
[user]
name = Pratham Patel
email = prathampatel@thefossguy.com
signingkey = ~/.ssh/git
[commit]
gpgsign = true
verbose = true # show the diff in the editor opened by `git commit` (as a comment)
status = true # show status info in the editor opened by `git commit` (as a comment)
workers = 0 # < 1 means use all **logical** cores
[color]
ui = always
advice = always
@ -29,11 +20,17 @@
transport = always
[column]
ui = auto,column,nodense # should cover all supported commands; I hope
[init]
defaultBranch = master
[push]
default = simple
followTags = true
status = never # show one entry of 'untracked files' per line
[commit]
gpgsign = true
status = true # show status info in the editor opened by `git commit` (as a comment)
verbose = true # show the diff in the editor opened by `git commit` (as a comment)
[core]
compression = 9
editor = nvim
fsmonitor = true # no workey on penguin
[credential]
helper = store
[diff]
guitool = meld # overrides `merge.guitool`
[difftool]
@ -41,8 +38,8 @@
[fetch]
parallel = 0 # multi-threaded fetching
[format]
numbered = true
cc = thefirst1322@gmail.com # my other email
numbered = true
signOff = true
[fsmonitor]
allowRemote = false
@ -50,17 +47,21 @@
format = ssh
[ssh]
allowedSignersFile = ~/.ssh/allowed_signers
[blame]
date = iso8601
showEmail = true
[init]
defaultBranch = master
[log]
date = iso8601
[advice]
addIgnoredFile = false
[push]
default = simple
followTags = true
[sendemail]
smtpEncryption = none
smtpPass = AAAAAAAAAAAAAAAAAAAAAA
smtpServer = 127.0.0.1
smtpServerPort = 1025
smtpUser = prathampatel@thefossguy.com
smtpEncryption = none
supresscc = self
smtpPass =
[user]
email = prathampatel@thefossguy.com
name = Pratham Patel
signingkey = ~/.ssh/git