mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2026-04-28 18:46:17 -04:00
9 lines
433 B
Cheetah
9 lines
433 B
Cheetah
{{- $name := promptStringOnce . "user.git.name" "Git user name for the author/committer" -}}
|
|
{{- $email := promptStringOnce . "user.git.email" "Git user email for the author/committer" -}}
|
|
{{- $signingkey := promptStringOnce . "user.git.signingkey" "Git user signing key for the author/committer" -}}
|
|
|
|
[data.user.git]
|
|
name = {{ $name | quote }}
|
|
email = {{ $email | quote }}
|
|
signingkey = {{ $signingkey | quote }}
|