Tagged Questions
A tree conflict occurs in a revision control system when conflicting changes are made to the repository's directory structure on different branches and then those branches are merged.
37
votes
5answers
79k views
SVN how to resolve new tree conflicts when file is added on two branches
When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked on in those separate branches) I'm getting one of the new tree conflicts:
C ...
17
votes
3answers
17k views
svn merge functionality broken by tree conflicts
I don't know when the svn team decided to inflict tree conflicts on us but it has completely broken the merge functionality of svn.
I have a branch and I want to merge the latest changes from the ...
17
votes
3answers
8k views
SVN - unable to merge branch back into trunk - numerous tree-conflicts
I have what I thought was a simple scenario - using TortoiseSVN:
1) I made a branch (B2) of an application (to work on implementing image sprites & JAWR).
2) Testing & development went on as ...
7
votes
2answers
7k views
SVN X remains in tree-conflict
I am using VisualSVN (which uses Tortoise). I accidentally move a folder to a different location. When tries to move it back, SVN pukes with this error. It happened once before and I managed to do ...
5
votes
1answer
426 views
SVN: How to resolve evil twins tree conflict by accepting incoming add (removing local add)
In SVN I have a tree conflict upon merging two branches. The tree conflict arises because I have added a the same file or the same directory in both branches. Much the same question is asked here:
...
5
votes
2answers
6k views
Can't resolve tree conflict with SVN
I recently encountered a very weird behavior of subversion.
I just merged my local copy of a branch with a remote branch. Everything went smooth, but I've got 1 tree conflict (local delete, remote ...
3
votes
1answer
3k views
SVN: “tree conflict already exists”, but there were none before I tried merging
I get this error message from SVN:
svn: Attempt to add tree conflict that already exists
Now, this has already been asked on this site and the given explanation is that a tree conflict has not ...
2
votes
1answer
289 views
How to solve subversion tree conflict: branch removed a directory and trunk changed a file there
1) I have a trunk and created a branch from it.
2) The trunk contains a directory A, in the branch this directory was renamed to B.
3) Now in the trunk we accidently made a change to a file F in A.
...
2
votes
3answers
4k views
SVN how to resolve “local add, incoming add upon update” on a *folder*?
Here is my scenario:
Assume we have an SVN repo with the following content:
myfolder
myfolder\file.txt
Now i create two checkouts of this repo, co1 and co2.
In co1 we modify file.txt.
In co2 we:
...
1
vote
1answer
75 views
Solving a problem merging from trunk to branch in svn
I have a problem when merging from the trunk into a development branch in an SVN tree.
The history of the project is this. It started with just a single trunk. About revision 207, the first branch ...
1
vote
2answers
83 views
no tree conflict after push/pull to/from central git repository using egit
We have 2 developers using EGit. One works on Windows, one works on Linux
And we set a policy for collaboration as following:
There is a central (bare) repository
Initially, each developer make a ...
1
vote
1answer
2k views
How can I resolve all SVN conflicts automatically? (Windows CLI)
I'm trying to automate some Subversion processes and I'm running into problems with conflicts. When I merge two branches, sometimes I get tree conflicts and regular (text) conflicts. I'd like to be ...
1
vote
3answers
2k views
Tortoise SVN tree conflict with myself
Has anyone had the experience of moving a file in tortoise and committing successfully, only to later commit a different change and be told of a tree conflict where:
the file in its original ...
0
votes
1answer
57 views
Problem merging trunk into an unchanged branch in SVN
I have a SVN repository where I have the following structure:
+-trunk
| |
| +-dir1
| |
| +-dir2
|
+-branches
|
+-tags
I'm trying to make some significant changes in dir1, so I ...
0
votes
1answer
131 views
SVN switching to a branch that is older than the working copy
I made changes to my working copy of the trunk. Then, I wanted to switch to a different branch so that I could commit to it. I did, and now my project is a mess. The branch I switched to was behind ...
0
votes
2answers
766 views
TortoiseSVN approaches to resolve Tree Conflicts
TortoiseSVN can help with several kinds of tree conflicts using Edit Conflict window.
The problem is that in case of "... upon merge" conflict types TortoiseSVN can't guess which files need to be ...
0
votes
3answers
558 views
getting tree conflicts when merging with Subclipse
I am using Eclipse 8.6 and Subclipse 1.6, and svn 1.6.x server. I created a branch, made some changes in both branch and trunk, and now I am trying to merge from trunk to this branch. All what I am ...
0
votes
1answer
1k views
SVN Merge with tree conflict problem
I have seen other posts on this site with answers, but I think I have a slightly different scenario. My situation is as follows:
trunk and branch b1
at a certain point, b1 was 'copied' to trunk as ...
0
votes
2answers
230 views
How exactly to do a Subversion pre-1.5 style merge?
I have to deal with Subversion 1.4 merges at the moment and have found this answer to a question, which exactly describes my problem. The actual question deals with git-style rebase and merge problems ...