35 lines
717 B
Text
35 lines
717 B
Text
# Set environment variable GIT_CONFIG_NOSYSTEM=true to ignore the Git
|
|
# system-wide config file (normally /etc/gitconfig).
|
|
|
|
[pull]
|
|
ff = only
|
|
rebase = false
|
|
[merge]
|
|
ff = only
|
|
[push]
|
|
default = simple
|
|
[color]
|
|
ui = auto
|
|
[init]
|
|
defaultBranch = main
|
|
[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
|
|
sum = log --compact-summary
|
|
summary = log --compact-summary
|
|
[filter "lfs"]
|
|
clean = git-lfs clean -- %f
|
|
smudge = git-lfs smudge -- %f
|
|
process = git-lfs filter-process
|
|
required = true
|
|
[include]
|
|
path = windows
|
|
path = local
|