1
0
This commit is contained in:
Jeff Lance 2024-03-10 20:14:01 +01:00
parent 6ef6dbacc6
commit 165d14d942
2 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,10 @@
email = {{ email := promptString "What is your main git email address " "" }}
signinkey = {{ signinkey := promptString "What is your main git email address " "" }}
latex = {{ latex := promptBool "Do i install latex files " false }}
[git]
autoCommit = true
autoPush = true
[data]
email = {{ promptString "What is your main git email address " "" | quote }}
latex = {{ promptBool "Do i install latex files " false }}
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}
latex = {{ $latex }}

View File

@ -1,7 +1,9 @@
[user]
name = Jeff LANCE
email = "{{ .email }}"
signingkey = "{{ .signingkey }}"
{{ if not empty .signinkey }}
signinkey = "{{ .signinkey }}"
{{ end }}
[core]
excludesfile = /home/jeff/.gitignore.global
[credential]