Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git svn: Delta source ended unexpectedly

I'm using git svn for svn repo. My colleague commited to repo some native libraries and i can't rebase my trunk after that:

    D       native/libVal.so.v8.0.38za
    A       native/libHelpVAL.so
    A       native/libValuation.so.v9.0.36l

Incomplete data: Delta source ended unexpectedly at /usr/lib/git-core/git-svn line 5117

I've tryed to set core.autocrlf to false (as suggested) and do the clone but it didn't help to me. I'm using git 1.7.3.3 under cygwin(win xp).

Thx for any help.

like image 970
rifcoder Avatar asked Jan 05 '11 10:01

rifcoder


1 Answers

I googled "Delta source ended unexpectedly" and found this which implies it's an issue on the svn side. Maybe try doing a git svn reset to a few revisions before the changes your colleague made, and then git svn rebase.

like image 162
Tyler Avatar answered Sep 28 '22 08:09

Tyler