From 355dd7f26a1eb73319351bbd1a83f6c1518ab79e Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Tue, 26 Mar 2024 08:31:29 +0530 Subject: [PATCH] gitconfig: sort alphabetically --- .gitconfig | 57 +++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/.gitconfig b/.gitconfig index 1330642..ee7e65c 100644 --- a/.gitconfig +++ b/.gitconfig @@ -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