aboutsummaryrefslogtreecommitdiff
path: root/.gitconfig
blob: 479cc69a4b51298b407169edab17af3a89d986ae (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
[user]
	name = Mitja Felicijan
	email = mitja.felicijan@gmail.com
	signingkey = ~/.ssh/id_rsa.pub
[core]
	editor = vim
[commit]
	gpgsign = true
	verbose = true
[tag]
	gpgsign = true
[init]
	defaultBranch = master
[pull]
	rebase = true
[gpg]
	format = ssh
[alias]
	pushall = !sh -c \"git remote | xargs -L1 git push --all --force-with-lease\"
	tree = log --oneline --graph
[filter "lfs"]
	required = true
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process