gpt4 book ai didi

混帐推送 "The remote end hung up unexpectedly "

转载 作者:太空狗 更新时间:2023-10-29 13:36:31 25 4
gpt4 key购买 nike

我在我的本地仓库中创建了一个新分支,在一些提交之后,我想将它推送到远程仓库。

git push origin new_branch

我有这个错误:

$ git push origin new_branch

Counting objects: 32, done.

Delta compression using up to 2 threads. Compressing objects: 100% (18/18),done.

Writing objects: 100% (18/18), 5.29 KiB, done. Total 18 (delta 13), reused 0 (delta 0)

Write failed: Broken pipe

fatal: The remote end hung up unexpectedly

fatal: The remote end hung up unexpectedly

当我使用 $ git remote -v 时

origin git@106.187.99.99:XXX.git (fetch)

origin git@106.187.99.99:XXX.git (push)

git 分支

fiberead_com$ git branch -a
* new_branch
master
remotes/origin/HEAD -> origin/master
remotes/origin/dev
remotes/origin/master
remotes/origin/online

nginx.conf

user www-data;
worker_processes 1;

error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
worker_connections 1024;
# multi_accept on;
}

http {
include /etc/nginx/mime.types;

access_log /var/log/nginx/access.log;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
# keepalive_timeout 65;
client_header_timeout 3m;
client_body_timeout 3m;
keepalive_timeout 175 120;
client_max_body_size 35m;

tcp_nodelay on;


gzip on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}

有人能帮帮我吗?

我的 git 服务器在 Linode 中。我使用 GITLAB 而另一个项目没有这个问题。只有一个新项目,我使用'git clone'来 pull 我的电脑。但是当我推送代码时,出了点问题发生了。

我使用 Nginx。

我用'$ git push origin master',有同样的问题。

最佳答案

这意味着负责监听请求的 http 服务器(这里是通过 http 的 git 推送)未能完成。

  • 要么是因为服务器的问题:
    只有所述 http 服务器的日志包含根本原因(例如,它可能是消息太大而服务器无法处理,或者正确的问题,或者......)。
    这些日志可以在 etc/httpd/httpd.conf (Apache) 或 /var/log/nginx/error.log ( NGiNX ) 中,甚至在 gitlab 中本身。

  • 或者因为它从未收到请求,这就是OP jesktop在这里确认是这种情况:

I found all of log,but the error log are empty.
The problem is the network. Because I am in China and there is a special network here.
So the VPN can solve this problem.

关于混帐推送 "The remote end hung up unexpectedly ",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12105147/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com