我通常使用 gitbash 在github中提交。
当我提交时,它会显示我的用户名。
我的教授要求我在提交详细信息中提交我的全名项目。
我通过在Windows中编辑 .gitconfig 文件尝试了一些解决方案。
我还尝试了一些来自 Stack Overflow 的解决方案,如下所示:
git config --global user.name "name"
git config --global user.email "email"
和
git config user.name "name"
git config user.email "email"
但这对我不起作用。
答案 0 :(得分:0)
试试这个:
git commit --amend --author="Author Name <email@address.com>"