summaryrefslogtreecommitdiffstats
path: root/debian/local/gitconfig
blob: a8fb90f59f1637a14e8ad8dd0b7447e258638ac5 (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
# /etc/gitconfig

[alias]
	slog = log --no-show-signature --pretty=format:'%C(yellow)%h%C(reset) %G? (%an, %C(green)%cr%C(reset))%C(red)%d%C(reset) %s'
	wdiff = diff --color-words
	wlog = log --color-words
	wshow = show --color-words

[color]
	ui = true

[core]
	autocrlf = false
	whitespace = blank-at-eof,blank-at-eol,cr-at-eol,indent-with-non-tab,space-before-tab

[diff]
	renames = copies
	wsErrorHighlight = all

[init]
	defaultBranch = main

[log]
	follow = true

[merge "dpkg-mergechangelogs"]
	# depends: dpkg-dev
	name = debian/changelog merge driver
	driver = dpkg-mergechangelogs -m %O %A %B %A

[pull]
	rebase = true

[push]
	followTags = true