Matthieu Moy wrote:
quoted hunk ↗ jump to hunk
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -47,7 +47,11 @@ static const char implicit_ident_advice[] =
"\n"
"If the identity used for this commit is wrong, you can fix it with:\n"
"\n"
-" git commit --amend --author='Your Name <you@example.com>'\n";
+" git commit --amend --author='Your Name <you@example.com>'\n"
+"\n"
+"or\n"
+"\n"
+" git commit --amend --reset-author\n";
This message gets used when the author was set from gecos because
not available in the configuration. Do you perhaps mean:
If the identity used for this commit is wrong, you can fix it with:
git commit --amend --author='Your Name [off-list ref]'
git commit --amend --author='Your Name [off-list ref]'
or
cat <<EOF >>~/.gitconfig
[user]
name = Your Name
email = you@example.com
EOF
git commit --amend --reset-author
?