Explorar el Código

git config

pull/1/head
padre
commit
ffff84df17
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. +8
    -0
      templates/git/gitconfig.j2

+ 8
- 0
templates/git/gitconfig.j2 Ver fichero

@@ -1,5 +1,13 @@
[user]
{% if git_user_email is defined %}
email = {{git_user_email}}
{% endif %}
{% if git_user_name is defined %}
name = {{git_user_name}}
{% endif %}
[init]
defaultBranch = main
{% if github_username is defined %}
[github]
user = {{github_username}}
{% endif %}