答案 0 :(得分:0)
Github似乎只支持ssh方式来阅读和编写回购,尽管https方式也显示为“Read& Write”。
因此,您需要在PC上更改您的repo配置:
.git/config
文件url=
[remote "origin"]
条目
url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git
更改为url=ssh://git@github.com/derekerdmann/lunch_call.git
。也就是说,将@
符号前的所有文本更改为ssh://git
config
文件并退出。现在您可以使用git push origin master
在GitHub上同步您的仓库