I have svn repo
http://path/to/svn/trunk
And separated a few things from him to
http://path/to/svn/branch
Using
svn copy http://path/to/svn/trunk/site1 http://path/to/svn/branch/site1 -m 'message'
I did a lot of work on the branch, but could not merge it back, because it is not ready for this.
However, I need to commit the changes to trunk now, and I get the following when trying to do this
> svn commit -m 'some message' svn: Commit failed (details follow): svn: Aborting commit: '/path/to/svn/trunk' remains in tree-conflict
I thought I should svn up
in / path / to / trunk, but the following will happen:
> svn up svn: Two top-level reports with no target
A --force
does not help fix the situation.
svn status
leads to a large number of + next to modified files
> svn status M + site1/changedfile
Has anyone experienced this before, and can you shed some light on the problem?
source share