What can I do with Git corruption due to a missing object?

前端 未结 3 1689
梦毁少年i
梦毁少年i 2021-01-04 12:05

I just went to clone a repository on another remote server and ran into an issue trying to do so:

git clone git@codebasehq.com:blah/blah/docs.git
Cloning int         


        
相关标签:
3条回答
  • 2021-01-04 12:18

    If it's only one single file and it's not packed yet, you should be able to find it in .git/objects/14/f87a739828e4d489b0310a51e057b30333926e in your local repository. You can copy this files to the corresponding directory in the repository on your server.

    If it is packed, you should be able to unpack it using git unpack-objects on one of the pack files in .git/objects/pack/. After that, copying to the server works as described above.

    0 讨论(0)
  • 2021-01-04 12:20

    Here is almost the same question with a very detailed solution: Github Repo Corruption - Sha1 Collision

    0 讨论(0)
  • 2021-01-04 12:22

    Simple push will not fix this problem, because git sees it has the commit that refers to the corrupt file and will assume it has all the objects it needs.

    Do you have another repository with the project that does not report any problems with fsck (and has the file in question)? E.g. on your local machine? Than you should try:

    1. Put the corrupt repository aside.
    2. Clone the good repository in it's place.
    3. Push any branches the old repository had from other repositories or the old repository.

    Since this kind of error means the file on disk was corrupt, I suggest you do a thorough check of the filesystem, the disk and also memory (the data could get corrupted in memory when git was saving them).

    Note: While all disks have at least some checksums, most memory chips have none at all, so a memory fault is more likely to go undetected than a disk fault. memtest86+ is a good way to check memory.

    0 讨论(0)
提交回复
热议问题