aboutsummaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-11-29 00:21:56 +0100
committerPolesznyák Márk <contact@pml68.dev>2025-11-29 00:36:55 +0100
commit3d340c689b39427f1b29b642baa108d7f5fc39ac (patch)
treed60483635a42e28278bb81c8c199cb5dad03c823 /.gitconfig
downloaddotfiles-3d340c689b39427f1b29b642baa108d7f5fc39ac.tar.gz
feat: initial commit
Diffstat (limited to '')
-rw-r--r--.gitconfig38
1 files changed, 38 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig
new file mode 100644
index 0000000..4e395b8
--- /dev/null
+++ b/.gitconfig
@@ -0,0 +1,38 @@
+[user]
+ email = contact@pml68.dev
+ name = Polesznyák Márk
+ signingKey = /home/umberto/.ssh/id_ed25519
+[sendemail]
+ smtpServer = mail.mailo.com
+ smtpServerPort = 465
+ smtpUser = contact@pml68.dev
+ smtpAuth = LOGIN
+ smtpEncryption = ssl
+ confirm = auto
+[pull]
+ rebase = true
+[push]
+ followTags = true
+[core]
+ editor = nvim
+[init]
+ defaultBranch = master
+[rerere]
+ enabled = true
+[rebase]
+ autoSquash = true
+[commit]
+ gpgSign = true
+[tag]
+ gpgSign = true
+[gpg]
+ format = ssh
+[gpg "ssh"]
+ allowedSignersFile = /home/umberto/.ssh/allowed_signers
+[alias]
+ lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
+[filter "lfs"]
+ clean = git-lfs clean -- %f
+ smudge = git-lfs smudge -- %f
+ process = git-lfs filter-process
+ required = true