1
0
Fork 0
git/debian/local/gitconfig
Daniel Baumann 2456dc9cd2
Setting push.followTags to true.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:44:30 +02:00

32 lines
636 B
Text

# /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
[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