在使用git的過程中,一直出現fatal: protocol error: bad pack header,導致git無法更新以及上傳。具體報錯見以下:
fatal: git upload-pack: aborting due to possible repository corruption on the remote side.
remote: aborting due to possible repository corruption on the remote side.
fatal: protocol error: bad pack header
嘗試網上很多種方式,如以下:
git config --global pack.windowMemory "100m" git config --global pack.packSizeLimit "100m" git config --global pack.threads "1"
也嘗試過以為是版本問題,但是查看本人git 的版本,centos7使用yum安裝都是都一個版本。

都沒有解決。
於是看了一下內存,看着雖然還是很夠,但是這里已經沒有其它辦法了,於是將機器由1C4G升級至1C8G,升級后問題解決。

看來感覺還是內存不夠,可能重啟釋放了內存也能解決,但是這里沒有去嘗試
