github提交显示全名而不是用户名

时间:2017-05-03 14:18:08

标签: github git-bash

我通常使用 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"

但这对我不起作用。

1 个答案:

答案 0 :(得分:0)

试试这个:

git commit --amend --author="Author Name <email@address.com>"