-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_gitconfig.tmpl
57 lines (57 loc) · 1.19 KB
/
dot_gitconfig.tmpl
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[user]
name = Pedro Nascimento
email = {{ .email }}
signingKey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILoJqpDwHsWobaN2mwKUP0HBcvCE4+sNBKUTZK2AK4Q+
[gpg]
format = ssh
[commit]
gpgsign = true
[color]
status = auto
branch = auto
[color "status"]
changed = yellow
added = green
untracked = red
[alias]
cleanup = !git remote prune origin && git gc && git clean -df && git stash clear
sed = ! git grep -z --full-name -l '.' | xargs -0 sed -i -e
prr = pull-request -o
prd = pull-request -o -d
co = checkout
sps = !git stash -q && git pull && git stash pop -q
[core]
excludesfile = ~/.gitignore
attributesfile = ~/.gitattributes
pager = delta
[push]
default = current
[branch]
autosetuprebase = always
[github]
user = lunks
[pull]
rebase = true
[hub]
protocol = ssh
[rebase]
autosquash = true
[http]
postBuffer = 524288000
[interactive]
diffFilter = delta --color-only
[diff]
colorMoved = default
[merge]
conflictstyle = diff3
[delta]
features = line-numbers
syntax-theme = gruvbox
file-style = yellow
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true