2020-01-16 09:46:42 +00:00
|
|
|
|
{% 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
|
2020-06-29 09:32:05 +00:00
|
|
|
|
[pull]
|
|
|
|
|
ff = only
|
2021-05-01 17:42:05 +00:00
|
|
|
|
[init]
|
|
|
|
|
defaultBranch = main
|