15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
|
{% if gitconfig_name is defined and gitconfig_email is defined %}
|
|||
|
[user]
|
|||
|
name = {{ gitconfig_name }}
|
|||
|
email = {{ gitconfig_email }}
|
|||
|
{% endif %}
|
|||
|
[core]
|
|||
|
excludesfile = ~/.gitignore_global
|
|||
|
editor = vi
|
|||
|
[push]
|
|||
|
default = matching
|
|||
|
[color]
|
|||
|
ui = auto
|
|||
|
[help]
|
|||
|
autocorrect = 1
|