Tagged Questions
The svn-merge tag has no wiki summary.
5
votes
0answers
68 views
Detecting branch reintegration or merge in pre-commit script
Within a pre-commit script, is it possible (and if so, how) to identify commits stemming from an svn merge?
svnlook changed ... shows files that have changed, but does not differentiate between ...
4
votes
3answers
4k views
I cannot commit changes after merge in SVN
I had a problem with committing changes after merging two branches of my project using TortoiseSVN.
Here are details:
I did a merge branch to trunk of project which I am working on.
Project ...
2
votes
2answers
652 views
What does this Eclipse icon mean in a Merge Results view?
I just did an svn merge from a branch to a trunk in my Eclipse IDE, and in the Merge Results view, there is this following icon:
I am dying to know what it means. I have searched the entire ...
2
votes
2answers
614 views
svnmerge vs svn merge
What is the difference between 'svnmerge' (alias svnmerge.py, the python script that comes with svn) and 'svn merge' (Subversion 1.5's native merge-tracking)? Which one do you recommend?
1
vote
1answer
267 views
svn merge - moved repository to a different server, and now getting 'has different repository root' messages
This is kind of similar to http://stackoverflow.com/questions/1601021/subversion-merge-has-different-repository-root-than - but appears to be a very different cause (especially as the answer for that ...
0
votes
1answer
695 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
2answers
124 views
Best practices regarding merging bugfixes from trunk into a feature branch using TortoiseSVN
I have a case where my branch represents a new version which in it there is a refactored data layer, however all of the bug fixes are applied to the trunk.
Am I doing something the oppsite way since ...
0
votes
4answers
2k views
Subversion merge local changes trunk to branch
In my local Subversion working copy, I have a copy of trunk and of a code branch. I've made changes in the trunk, and want to copy these changes to my (currently clean) local copy of the branch.
I ...