summaryrefslogtreecommitdiff
path: root/home/.gitconfig
blob: 21b66c7aa073af4d5690394cd882239306733e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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