标签: git github
我确实推动了原始主人,之后我有一个错误:
$ git push origin master 致命: https://github.com/myusername/my-first-project-test.git/info/refs没有 发现:你在服务器上运行了git update-server-info吗?
$ git push origin master
致命: https://github.com/myusername/my-first-project-test.git/info/refs没有 发现:你在服务器上运行了git update-server-info吗?
我做了:
$ git update-server-info
但它根本没有帮助。
答案 0 :(得分:4)
这似乎是授权问题。
我建议您尝试使用ssh协议而不是https:
git@github.com:<user>/<reponame>.git
(source)
另外,请确保您的全球.gitconfig中有
.gitconfig
[http] sslVerify = true
您可以通过发出
git config --global http.sslVerify true