月前我安装了我的新公司计算机(使用git-for-windows)并将一些更改推送到一个项目。我不知道git在哪里获得了我的个人电子邮件和名称,但它在--global中有关于我的这些信息并按此方式推送。
当我在git config --global
的git配置中更改我的个人数据时,我认为我修复了它。在其他位置没有设置(--system, - local, - file)。
> git config --global -l
user.email={my}.{name}@{company}.cz
user.name={My Name}
这是正确的并且在我推送的项目的文件夹中(user.name/email)
> git config -l
...
credential.helper=manager
user.email={my}.{name}@{company}.cz
user.name={My Name}...
它也是正确的,但不知怎的,它仍然推送我的旧电子邮件和名称。我还添加credential.helper
,因为我认为它可能有一些重要性,但我没有设置Windows凭据(因此它们是空的)。
我过去的提交将保持这种方式,但我想修复我未来的提交。