{{ autogenerated }}
# global git configuration for GitLab
# see:
# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-cookbooks/gitlab/attributes/default.rb
# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-cookbooks/gitlab/templates/default/gitconfig.erb
# (last updated for omnibus-gitlab 8.7.9+ce.1-0-gf589ad7)
#
{% from 'macrolib.cfg.in' import cfg  with context %}

# don't waste memory when packing (each thread uses own work memory)
# besides it packs better with 1 thread
[pack]
        threads = 1

# don't allow corrupt/broken objects to go in
[receive]
        fsckObjects = true


[user]
        name = {{ cfg('email_display_name') }}
        email = {{ cfg('email_from') }}
[core]
        autocrlf = input
[gc]
        auto = 0