diff options
Diffstat (limited to '.gitconfig')
| -rw-r--r-- | .gitconfig | 38 |
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 |
