Tagged Questions

5
votes
0answers
76 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
617 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
29 views

Why SVN does not merge trunk when trunk subdirs have been merged?

I am facing a really annoying issue with SVN merge. I want to merge the trunk into a branch. Usually, it is rather simple, but this time, due to heavy changes, I had to process step-by-step and SVN ...
1
vote
1answer
268 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
707 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
125 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 ...