小白學習筆記之Git 使用問題

2021-10-11 08:42:17 字數 716 閱讀 9185

$ git clone 

cloning into '******'

...remote: enumerating objects: 4486, done.

error: rpc failed;

curl 56 openssl ssl_read: connection was reset, errno 10054

error: 6865 bytes of body are still expected

fatal: the remote end hung up unexpectedly

fatal: early eof

fatal: index-pack failed

解決方案

# 為 git 新增配置項,通過下面的命令可以簡單完成

# 在這之前可以執行 git config -l 命令看看已有配置項有哪些

git config --add core.compression -1

問題原因

google了一波,發現大家提到的原因大都是codebase太大,所以在core這個section裡新增屬性compression嘗試解決。

compression為壓縮屬性,增加此屬性後伺服器會壓縮目標檔案,再傳輸到客戶端,客戶端再進行解壓。取值範圍為[-1,9],-1為預設壓縮,0為不壓縮,1~9數字越大壓縮的越慢,對應得到的檔案越小。

git學習(小白)

安裝好git後,隨便建立乙個空目錄,右鍵選擇git bash here 配置個人資訊 git config global user.name 你想使用的使用者名稱 配置你的使用者名稱 git config global user.email 你的郵箱 配置你的郵箱 注意 加了global配置的就是該...

git小白的學習

1.1 git介紹 1.1.1 什麼是git git是乙個開源的分布式版本控制系統,可以有效 高速地處理從很小到非常大的專案版本管理。git 是 linus torvalds 為了幫助管理 linux 核心開發而開發的乙個開放原始碼的版本控制軟體。1.1.2 版本控制工具具備的功能 1 協同修改 可...

GIT 使用學習筆記

我的是ubuntu,用apt get sudo apt get install git git config global user.name your name git config global user.email email example.com 本地git倉庫和github倉庫之間的傳輸...