git 如何解决“接收失败:连接被对等端重置”错误

nwnhqdif  于 2023-05-21  发布在  Git
关注(0)|答案(6)|浏览(409)

我正在尝试$ git pull$ git fetch命令myRepo给我错误,但myTestRepo工作正常。
命令给予了我这个错误。

Fetching origin
fatal: unable to access 'http://mysite/myPath/myRepo.git/': Recv failure: Connection reset by peer
error: Could not fetch origin

我尝试了git $ git fetch -p$ git fetch -p --all -f命令,它们工作了一两次之后,命令给予了相同的错误。

tktrz96b

tktrz96b1#

我使用的是http连接,我将连接改为ssh而不是http,问题解决了

camsedfj

camsedfj2#

我也遇到过类似的问题,但都解决了。实际上,没有http,只有https。尝试将http替换为https

ioekq8ef

ioekq8ef3#

如果使用http url时80被阻止,可能会发生这种情况。

3pvhb19x

3pvhb19x4#

我有个问题

git clone xyz.git

我解决它添加sudo突击队

sudo git clone xyz.git
xv8emn3q

xv8emn3q5#

如果您的公司通过*代理*使用 github,则:
在用户
.gitconfig
文件中,包含HTTPS对应的代理URL。
例如:

[https]
    proxy = https://YOUR_HTTPS_PROXY:PORT_NUMBER

还是逃跑

git config --global https.https://domain.com.proxy https://proxyUsername:proxyPassword@proxy.server.com:port

您可以在这里看到更多:
https://gist.github.com/evantoli/f8c23a37eb3558ab8765

rlcwz9us

rlcwz9us6#

同步GitHub出现问题:
1.在IntelliJ中,按Ctrl+Alt+S并转到GitHub部分(而不是Git)。
1.选中Clone git repositories using ssh复选框。
1.更新项目。

相关问题