1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2024-10-18 11:31:00 +03:00

Add useful git options from blog post

* https://jvns.ca/blog/2024/02/16/popular-git-config-options/
This commit is contained in:
Arti Zirk 2024-07-11 11:31:48 +03:00
parent 7d816c971b
commit f5dc53aa6d

View File

@ -4,6 +4,7 @@
[merge]
tool = meld
conflictStyle = zdiff3
keepbackup = false
[alias]
plog = log --graph --pretty=format:'%h -%d %s %n' --abbrev-commit --date=relative --branches
@ -27,6 +28,7 @@
smtpServerPort = 587
[diff]
wsErrorHighlight = all
algorithm = histogram
[cola]
spellcheck = false
[push]
@ -58,3 +60,9 @@
allow = always
[column]
ui = auto
[rebase]
autosquash = true
[branch]
sort = -committerdate
[fetch]
prune = true