Can anyone help with using PkgTemplate without the need for setting up git user and email?
t = Template(; user="foo", authors="bar", host="Others", plugins=[ProjectFile, SrcDir])
The error is `ArgumentError: global git config requires user.name".
Can anyone help with using PkgTemplate without the need for setting up git user and email?
t = Template(; user="foo", authors="bar", host="Others", plugins=[ProjectFile, SrcDir])
The error is `ArgumentError: global git config requires user.name".
On linux, the solution for me was to use these command lines in a terminal (outside of julia):
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com