I hope this is the right forum to ask a question about git clone. I migrated one of my SVN repositories over to git. I later decided to move the repository from a shared hosting (Dreamhost) to a VPS environment (Liquid Web - Cent OS). I'm seeing the following when I try to bring the repository over:
git clone ssh://[email protected]/~/git/mycleanrepo myrepo.git Initialized empty Git repository in /home/myusername/git/ myrepo.git/.git/ remote: Counting objects: 957, done. remote: Compressing objects: 100% (932/932), done. remote: Total 957 (delta 255), reused 0 (delta 0) Receiving objects: 100% (957/957), 424.44 MiB | 908 KiB/s, done. Resolving deltas: 100% (255/255), done. Segmentation fault: 83% (400/481) [~/git/myrepo.git]# git pull Already up-to-date. [~/git/myrepo.git]# git fsck --full fatal: Out of memory, malloc failed When I try to pull the data from my laptop, I get the following message near the end. Aborting due to possible repository corruption on the remote side I tried the same process again and it terminated in a similar fashion: Receiving objects: 100% (957/957), 424.44 MiB | 900 KiB/s, done. Resolving deltas: 100% (255/255), done. Terminatedut files: 83% (400/481) <-- note this line said Checking out files: before Terminated was stamped over it [~/git/myrepo.git]# git --version git version 1.6.2.4 Am I doing something wrong? How can I troubleshoot this? Why would git fsck -full fail with out of memory error message? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
