pavan@Pavans-Air link-dashboard % git push origin feat/orders
Enumerating objects: 103, done.
Counting objects: 100% (103/103), done.
Delta compression using up to 4 threads
Compressing objects: 100% (68/68), done.
Writing objects: 100% (72/72), 134.83 KiB | 4.49 MiB/s, done.
Total 72 (delta 35), reused @ (delta 6)
error: RPC failed; curl 92 HTTP/2 stream @ was not closed cleanly: PROTOCOL_ERROR (err 1)
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date当我将代码推送到我的GitHub时,我得到了这个错误。
发布于 2019-11-29 16:40:46
可能是身份验证问题。尝试使用ssh http**.**而不是
您可以使用git remote更改当前存储库的来源。
git remote add origin git@github.com:username/project.git或者,您也可以全局将ssh设置为html上的默认值。
GitHub
git config --global url.ssh://git@github.com/.insteadOf https://github.com/位桶
git config --global url.ssh://git@bitbucket.org/.insteadOf https://bitbucket.org/发布于 2021-10-17 21:21:58
嗨,任何其他经历过这种情况的人。我实际上尝试了我在stackoverflow和github上看到的所有解决方案,都没有奏效。我所要做的就是重新启动我的笔记本电脑,然后再试一次,它就能工作了。喜欢魔术
https://stackoverflow.com/questions/59101163
复制相似问题