Tagged Questions
2
votes
2answers
615 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?
0
votes
1answer
699 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 ...