我正在尝试从我的工作笔记本电脑上提交github.com上的一个项目,该笔记本电脑已经为公司 git 服务器配置。有没有办法提交指定不同的作者凭据,可能使用不同的配置文件或其他命令行开关?
我试过使用
--author="My Name <MyNameEmail@email.com>"
我收到了消息:
Committer: unknown <WorkEmail@workemail.net>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
但它仍然没有更新我提交到 github.com 项目的用户名。还有什么我可以尝试的吗?甚至有可能吗?