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