Git 錯誤:fatel: loose object ... is corrupt 解決辦法

weixin_34120274發表於2018-09-20

錯誤描述

error: object file .git/objects/9a/83e9c5b3d697d12a2e315e1777ceaf27ea1bab is empty 
fatal: loose object 9a83e9c5b3d697d12a2e315e1777ceaf27ea1bab (stored in .git/objects/9a/83e9c5b3d697d12a2e315e1777ceaf27ea1bab) is corrupt  

解決辦法

$ # 在出現上述錯誤的資料夾下執行以下命令
$ rm -fr .git  
$ git init  
$ git remote add origin your-git-remote-url  # your-git-remote-url 是遠端 git 倉庫的地址
$ git fetch  
$ git reset --hard origin/master  
$ git branch --set-upstream-to=origin/master master   

簡書作者 小菜荔枝 轉載請聯絡作者獲得授權

相關文章