gitconfig.in 760 Bytes
Newer Older
1 2 3 4 5
{{ 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
6
# (last updated for omnibus-gitlab 8.4.4+ce.0-0-g1680742)
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#
{% 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