我是github / git bash的新用户。
我正在尝试使用git bash将我的项目添加到github。进入git push
阶段后,会出现'github.com'的用户名,但我无法输入我的用户名。这是为什么?
我也尝试使用git config --global user.name "Your Name Here"
答案 0 :(得分:1)
您需要删除并重新添加您的github遥控器作为ssh网址,而不是https网址。所以,说你一直在推动“起源”,而你的“起源”是“https://github.com/username/repo/repo.git”。你想做的事:
git remote remove origin
git remote add origin git@github.com:username/repository.git
git push origin branch
否则,您将不得不在每个会话中输入您的github电子邮件地址和密码。