I am working with a remote team using the SVN repository. Mostly due to the high latency that I encountered while accessing the repository, I decided to use git-svn. Everything works fine until I try to execute dcommit.
I have several local commits, and only one of them I want to click on SVN. I did git rebase -i HEAD~4to mark the commit needed for editing. git svn dcommit -nconfirms that this is the only version to be executed.
However, git svn dcommitan error appears on startup
Incomplete data: Delta source ended unexpectedly
from line 572 git-svn, which
if (!SVN::Git::Editor->new(\%ed_opts)->apply_diff) {
I'm not sure that committing through SVN works directly, since it takes several hours to check the repository (even for the part that interests me), so I can try to commit.
Any help is appreciated. Thanks in advance!
source
share