Files
dotfiles/gitconfig/.gitconfig
T
2026-05-29 14:21:03 +02:00

26 lines
415 B
INI

[core]
editor = nvim
[init]
defaultBranch = main
[pull]
rebase = true
[log]
date = iso-local
[include]
path = ~/.config/.gitconfig
[alias]
graph = log \
--oneline \
--all \
--graph \
--pretty='tformat:%C(yellow)%h %C(blue)%as%C(auto)%d %C(reset)%s'
oneline = log \
-n 20 \
--pretty='tformat:%C(yellow)%h %C(blue)%as%C(auto)%d %C(reset)%s'