When running get svn fetch to pull the latest new branches from the upstream svn repository I got this error:
$ git svn fetch
fatal: failed to unpack tree object 5ecb324e8b8fcb918acb253f33edc6ce49e49e0d
read-tree 5ecb324e8b8fcb918acb253f33edc6ce49e49e0d: command returned error: 128
Now every attempt at git svn on that local repo results in the same error. Originally I was running git version 1.5.6.4_0 and after the error I tried updating to 1.6.0.2_2 and the problem still persists.
Is there any way to clean up this corruption? A fresh git svn clone of the upstream repository is fine, but I'd like to preserve my existing setup. I've looked through the docs and googled for the problem with no luck.
I had the same problem. It is due to a particular SVN revision that git-svn can't read or deal with somehow. Here is what i tried in order:
git svn reset -r 42
git svn fetch
— Fetches each revision starting from 42 until the guilty one (say 50), then shows the same error message.git svn fetch --parent
— Don't ask me why. That fetches more revisions. No idea whether it's relevant though.git svn fetch
— Still doesn't work.git svn fetch -r 50
— Works.git svn fetch -r 51
— While no error message, go on.git svn fetch -r xx
— The error message shows up, it's the bad revision. Don't care.git svn fetch -r xx+1
— Works.git svn fetch
— Works! Starts to fetch more revisions.The process ought to be cleaned up (probably near the first steps), but it worked for me, without having to start again with a fresh clone.
The most likely cause for this is a file or commit (that the tree references) is corrupted or missing. Or the tree itself could be corrupted. Check with:
git fsck --unreachable HEAD $(cat .git/refs/heads/*)
This will show a bunch of "dangling" files, which you don't care about; corrupted files will report "Invalid SHA1" or some such thing. I don't know how a missing file would report. Remove any corrupt items and rsync
from your upstream repo to replace them.
I experienced the same error message after creating a new SVN branch. I was able to resolve the issue by deleting the complete ".git/svn" directory and fetching from SVN again:
$ rm -rf .git/svn
$ git svn fetch
Rebuilding .git/svn/refs/remotes/trunk/.rev_map.1d5df120-ff1b-4f4f-af56-171ecbcc785d ...
This fetched all commits from SVN again and resolved the error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With