workstation/roles/home-cli/files/gitconfig

36 lines
717 B
Text
Raw Normal View History

2023-04-13 10:35:58 +00:00
# Set environment variable GIT_CONFIG_NOSYSTEM=true to ignore the Git
# system-wide config file (normally /etc/gitconfig).
[pull]
2021-09-27 16:03:37 +00:00
ff = only
2023-04-13 10:35:58 +00:00
rebase = false
2024-05-09 10:21:08 +00:00
[merge]
ff = only
[push]
default = simple
[color]
ui = auto
2021-06-21 21:34:44 +00:00
[init]
defaultBranch = main
2024-05-09 10:08:46 +00:00
[log]
date = iso-strict
[gui]
encoding = utf-8
[guitool "Rebase"]
cmd = rebase
[alias]
graph = log --graph --oneline --all
l1 = log --pretty=oneline
last = log -1 HEAD --pretty=fuller --stat
lastmail = format-patch --stdout -1 HEAD
2024-05-22 09:30:04 +00:00
sum = log --compact-summary
summary = log --compact-summary
2023-04-13 10:35:58 +00:00
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[include]
2023-04-13 10:35:58 +00:00
path = windows
2021-11-01 10:59:31 +00:00
path = local