这有点奇怪。我在本地克隆GitHub repos。然后我做当地的委托。
用户: 当我推动这些更改时,我无法让用户正确。我想要的是我的GitHub用户(noopman)是提交者。相反,我得到了各种各样的奇怪用户。
密码: 此外,当我推送到我拥有的回购时,它并不是每次都要求我输入密码。我设置了什么来存储密码以及如何重置密码?
我已经编辑了我的.gitconfig并尝试了user.name和user.email的不同组合。
这是我正在尝试提交的回购 - 请注意我的所有测试提交 with different users
答案 0 :(得分:0)
看起来你需要 set up Git
# Sets the default name for git to use when you commit
git config --global user.name "Your Name Here"
# Sets the default email for git to use when you commit
git config --global user.email "your_email@example.com"
# Creates a new ssh key using the provided email
ssh-keygen -t rsa -C "your_email@example.com"