The reintegrate tag has no wiki summary.
12
votes
4answers
588 views
When is the reintegrate option really necessary?
If you always sync a feature branch before you merge it back, why do you really have to use the --reintegrate option?
The Subversion book says:
When merging your branch back to the trunk, ...
9
votes
4answers
1k views
Is it safe to use a subversion feature branch after reintegrate-merged to trunk?
Must a feature branch be deleted after it's merged (reintegrated) back to trunk?
I prefer to constantly merge changes back and forth from my feature branch - I believe this keeps the conflicts to a ...
8
votes
4answers
5k views
Problem reintegrating a branch into the trunk in Subversion 1.5
I'm trying to reintegrate a development branch into the trunk in my Subversion 1.5 repository. I merged all the changes from the trunk to the development branch prior to this operation. Now when I try ...
5
votes
2answers
2k views
Subversion rebase?
I find this way easier to merge branches and less conflicts:
Copy trunk to a new branch, merge it with feature branch/s. When things done, merge the new branch back to the trunk. This technique is ...
3
votes
2answers
37 views
Commit local changes after branch was reintegrated
something that shouldn't happen, happened to me today. We were working on a feature branch in svn (Server afaik 1.6, client 1.7). This branch was reintegrated yesterday, while i was not in the office. ...
2
votes
1answer
223 views
Why does merging a range of revisions differ from merging them individually?
I've been trying to get my head around SVN merging/reintegrating and have read a these articles/books:
http://svnbook.red-bean.com/en/1.5/index.html
...
2
votes
1answer
124 views
Subversion - Do I need to reintegrate if I don't merge from trunk
I have read quite a bit about the need to re-integrate when you merge from a branch back to the trunk in SVN (This article was really helpful ...
1
vote
1answer
131 views
Svn reintegrate to the branch (not the trunk)
I know there is --reintegrate option in svn 1.6 to merge a feature branch back to the trunk
My workflow is a little more complex:
We have feature branches - we merge trunk to them often
But we don't ...
1
vote
1answer
71 views
svn branch to branch merge
I have a question about when to use --reintegrate. We created a branch called Beta1 that we are using as a temp trunk for now while we try some new changes. Each developer then has a branch that they ...
1
vote
1answer
100 views
How can I reintegrate an already reintegrated and rolled-back branch in SVN?
We did following ugly thing:
So, how can we achieve another reintegrate?
What did I try so far?
well, the obvious merge - which fails brutally!
creating a patch and apply it to trunk (which ...
1
vote
1answer
147 views
How are deleted and renamed/moved files handled when merging a feature branch with trunk and reintegrating it back to the trunk in Subversion?
I've got a big-ish project that needs a lot of work on a new feature, so I planned on using a branch to do this work. I haven't had to do this before, and I just wanted to get assurance from an ...
0
votes
0answers
31 views
How to reintegrate a SVN branch into trunk with Netbeans?
I created a branch from trunk.
As development on my branch is finished, I want to merge (reintegrate) my branch into trunk.
Is there an option or setting to enable?
It seems Netbeans 7.1 isn't able to ...
0
votes
1answer
27 views
Is there a way to tell when reintegrate option used with svn merge?
Is there a way in Subversion 1.6, using logs, mergeinfo, etc., to determine when a merge was done with the --reintegrate option? (This presumes one knows which commits are the results of merges.)
0
votes
0answers
177 views
How to maintain SVN feature branches in Eclipse
I want to have a feature branch that I use for development off of the main SVN trunk, and merge changes from there back into trunk. I'm using SVN 1.6 and Subversive plugin for Eclipse.
Here's the ...
0
votes
1answer
823 views
Reintegrating a branch (like svn merge --reintegrate) using svnmerge.py
Since my SVN repository still uses Subversion 1.4, I am using svnmerge.py for merge tracking. I have a feature branch kept in sync with trunk (svnmerge init after branching, then svnmerge merge every ...
0
votes
1answer
162 views
How to exclude specified files from SVN reintegrate branch?
I have 2 branches what I'm reintegrating
In both branches I have same CFG files what I dont want to be reconciled.
Wanted keep them versioned but not reconciled.
Do you know any way how to exclude ...