We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The configuration docs say:
If you don't like the name it finds for you, you can set a name as the scriv.user_nick git setting.
scriv.user_nick
But when I try this, I get an error from Git:
mdickinson@lovelace ~ % git config --global scriv.user_nick "mdickinson" error: invalid key: scriv.user_nick
From the Git docs, I see:
The variable names are case-insensitive, allow only alphanumeric characters and -, and must start with an alphabetic character.
which leads me to believe that it's the underscore that's the issue here. If I try instead:
git config --global scriv.user-nick "mdickinson"
then the configuration succeeds, but of course then scriv doesn't pick this up.
Looking at other standard Git options, it appears the prevailing convention is camelCase, so maybe user_nick should be changed to userNick?
user_nick
userNick
Scriv version: 1.5.1 Git version: 2.45.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The configuration docs say:
But when I try this, I get an error from Git:
From the Git docs, I see:
which leads me to believe that it's the underscore that's the issue here. If I try instead:
git config --global scriv.user-nick "mdickinson"
then the configuration succeeds, but of course then scriv doesn't pick this up.
Looking at other standard Git options, it appears the prevailing convention is camelCase, so maybe
user_nick
should be changed touserNick
?Scriv version: 1.5.1
Git version: 2.45.2
The text was updated successfully, but these errors were encountered: