-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
41 lines (41 loc) · 986 Bytes
/
gitconfig
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
[user]
email = [email protected]
name = Krzysztof Skitek
[help]
autocorrect = 10
[commit]
template = ~/.dotfiles/commit-template
[core]
editor = nvim
#pager = delta
[interactive]
#diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[diff "sopsdiffer"]
textconv = sops -d
[url "[email protected]:"]
insteadOf = https://github.com/
[url "[email protected]:"]
insteadOf = https://gitlab.com/
[alias]
lsd = log --graph --decorate --pretty=format:'%h %Cgreen%aN%Creset %ai %Cblue%D%Cgreen %s'
pushf = push --force-with-lease
kdiff = difftool --no-symlinks --dir-diff
code-changes = "!git log --format=format: --name-only | egrep -v '^$' | sort | uniq -c | sort -rg | head -20"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = false
ff = only
[init]
defaultBranch = main
[push]
autoSetupRemote = true