workstation/roles/home-cli/files/gitconfig

32 lines
629 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).
[core]
autocrlf = input
[pull]
2021-09-27 16:03:37 +00:00
ff = only
2023-04-13 10:35:58 +00:00
rebase = false
[push]
default = simple
[color]
ui = auto
2021-06-21 21:34:44 +00:00
[init]
defaultBranch = main
[gui]
encoding = utf-8
[guitool "Rebase"]
cmd = rebase
[alias]
graph = log --graph --oneline --all
l1 = log --pretty=oneline
last = log -1 HEAD --pretty=fuller
lastmail = format-patch --stdout -1 HEAD
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