aboutsummaryrefslogtreecommitdiff
path: root/git/config
blob: c45c6841a1d700d32ba1d7fde0e396911289a420 (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
33
34
35
36
37
; vim: filetype=gitconfig

[user]
	email = ts@its1.de
	name = Thomas Schmucker

[includeIf "gitdir:~/**/up2parts-*/"]
	path = ~/.config/git/config-up2parts

[init]
	defaultBranch = master

[core]
	pager = delta

[interactive]
	diffFilter = delta --color-only

[delta]
	light = false
	navigate = true
	side-by-side = true
	line-numbers = true
	tabs = 4

[merge]
	conflictstyle = diff3

[diff]
	colorMoved = default

[http]
	sslVerify = false

[alias]
	lg = log --color --graph --pretty=format:'%C(magenta)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches
	cleanup = "!git branch --merged master --format='%(refname:short)' | grep -v '^master$' | xargs -r git branch -d"