fatl: the remote end hung up unexpectedly

2023-10-07 14:08

本文主要是介绍fatl: the remote end hung up unexpectedly,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

git提交代码报错504

error: RPC failed ; HTTP 504 curl 22 The requested URL returned error: 504
send-pack: unexpected disconnect while reading sideband pack 
fatl: the remote end hung up unexpectedly

原因

git push/pull.   导致文件内容过大报错HTTP 504 curl 22 The requested URL returned error: 504.     
git config http.postBuffer 524288000  

解决方法

[root@git ~]#git config --global http.lowSpeedLimit 0[root@git ~]#git config --global http.lowSpeedTime 999999[root@git ~]# git config --global http.postBuffer 5242880

使用git clone代码的时候报如下错误:

Cloning into 'FanHeIOSV2'...error: RPC failed; HTTP 504 curl 22 The requested URL returned error: 504 Gateway Time-outfatal: The remote end hung up unexpectedly

一,加大缓存区

[root@git ~]#git config --global http.postBuffer 524288000 

这个大约是500M
二、少clone一些,–depth 1

[root@git ~]#git clone https://git.com/ad/abd.git --depth 1 

–depth 1的含义是复制深度为1,就是每个文件只取最近一次提交,不是整个历史版本。
三、换协议
clone http方式换成SSH的方式,即 https:// 改为 git://

例如[root@git ~]#git clone https://git.com/ad/abd.git
换成[root@git ~]#git clone git://git.com/ad/abc.git

这篇关于fatl: the remote end hung up unexpectedly的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/158266

相关文章

Docker远程连接和Docker Remote Api

在Docker生态系统中一共有3种API:Registry API、Docker Hub API、Docker Remote API 这三种API都是RESTful风格的。这里Remote API是通过程序与Docker进行集成和交互的核心内容。 Docker Remote API是由Docker守护进程提供的。默认情况下,Docker守护进程会绑定到一个所在宿主机的套接字:unix:///v

【虚拟机/服务器】XAMPP错误: Apache shutdown unexpectedly解决办法

XAMPP安装好之后启动,但有些用户在启动apache的时候会出现: 11:41:38 [Apache] Status change detected: running11:41:38 [Apache] Status change detected: stopped11:41:38 [Apache] Error: Apache shutdown unexpectedly.11:41:38

【VSCode v1.93.0】手动配置远程remote-ssh

开发环境 VS Code版本:1.93.0 (Windows) Ubuntu版本:20.04 使用VS Code 插件remote-ssh远程访问Ubuntu服务器中的代码,若Ubuntu无法联网,在连接的时候会报错: Could not establish connection to "xxxx": Failed to download VS Code Server(Failed to

Unity Adressables 使用说明(四)分发远程内容(Distribute Remote Content)

概述 远程分发内容可以减少应用程序的初始下载大小和安装时间。你还可以更新远程分发的资源,而无需重新发布应用程序或游戏。 当你将远程 URL 分配为 Group 的加载路径(Load Path)时,Addressables 系统会从该 URL 加载组中的资源。当你启用Build Remote Catalog选项时,Addressables 会在 Remote Catalog 中查找任何远程资源的

阅读笔记--Guiding Attention in End-to-End Driving Models

作者:Diego Porres1, Yi Xiao1, Gabriel Villalonga1, Alexandre Levy1, Antonio M. L ́ opez1,2 出版时间:arXiv:2405.00242v1 [cs.CV] 30 Apr 2024 这篇论文研究了如何引导基于视觉的端到端自动驾驶模型的注意力,以提高它们的驾驶质量和获得更直观的激活图。 摘 要   介绍

ssh问题:Connection closed by foreign host. Disconnected from remote host

放通一个远程ip能够ssh服务器,但是报错: Connection closed by foreign host.   Disconnected from remote host。。。   解决办法: firewall防火墙放通ip。 /etc/ssh/sshd_config文件修改,运行root用户密码登,再重启sshd服务。 /etc/hosts.allow和/etc/hos

Linux - SSH: WARNING REMOTE HOST IDENTIFICATION HAS CHANGED

一、问题     通过 SSH 登录节点时遇到的问题 二、方案     通过 vi ~/.ssh/known_hosts 删除对应节点 ip 的 rsa 信息即可

在SourceTree建立GitHub远程Remote文件

1: 在GitHub新建⼀個newPository,可以取任何名字(有严格项目规定的要建成private!) 2: 在Source Tree找到Setting, 點擊進⼊ 3:在Remotes裏點Add 4: 添個名字任意的如test或後⾯面的origin,然後點RL/ path後的地球icon 5: 搜索在github裏建⽴的名字,選中點OK 6:一直點擊OK

Microsoft Remote Desktop for Mac 正版免费下载最新版 使用方法

一、下载地址 https://install.appcenter.ms/orgs/rdmacios-k2vy/apps/microsoft-remote-desktop-for-mac/distribution_groups/all-users-of-microsoft-remote-desktop-for-mac 安装   二、使用方法 1. 连接信息     2.

The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid state for called method 已解决

前面有个webSocket自动断开连接的问题,已解决,请见博客: webSocket java.io.EOFException: null 增加心跳机制解决 然后又报了一个错: java.lang.IllegalStateException: The remote endpoint was in state [TEXT_FULL_WRITING] which is an invalid st