aboutsummaryrefslogtreecommitdiff
path: root/.gitconfig
blob: 67ec9afb1dc62d4fdc952aab6c33acbd13e14b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[user]
  email = contact@pml68.dev
  name = Polesznyák Márk
  signingKey = /home/umberto/.ssh/id_ed25519
[credential "smtp://contact%40pml68.dev@mail.mailo.com%3a465"]
  helper = "pass show git"
[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