blob: 6f4ba137c4580c7618e9249e813baa78dd47921e (
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
|
[user]
email = nettingman@gmail.com
name = Botond Hende
[init]
defaultBranch = master
[core]
editor = nvim
[alias]
com = commit
a = add -Av
st = status
diffc = diff --cached
squash-all = "!f(){ git reset $(git commit-tree HEAD^{tree} -m \"${1:-A new start}\");};f"
[push]
autoSetupRemote = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[rebase]
updateRefs = true
autosquash = true
[pull]
rebase = true
[url "https://git.wazul.moe/"]
insteadOf = git-repos:public/
[url "git-repos:public/"]
pushInsteadOf = https://git.wazul.moe/
pushInsteadOf = git-repos:public/
[include]
path = .gitconfig.local
|