Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
1k views

Commits and merges on SVN subdirectories considered harmful?

We have several large subprojects inside our main SVN project root. I commit and merge only my subproject when working with our release branches, mainly because it's faster. However, a colleague ...
5
votes
3answers
555 views

Subversion can't merge after a move

I'm very new to Subversion, but I've used other revision control systems like ClearCase for years. My boss asked me to fix this project so that it could be built with Maven instead of Ant. One of the ...
5
votes
6answers
11k views

SVN Merge conflict during commit

Eclipse + Subversive plugin On commiting a directory which is out of sync with the SVN a message pops up: Merge conflict during commit svn: Commit failed (details follow): svn: File or directory '.' ...
4
votes
1answer
365 views

How should one use the svnmerge workflow with Mercurial?

svnmerge helps to block some changesets from a specific branch. How can this be achieved with Mercurial?
3
votes
1answer
6k views

“The system cannot find the file specified” when invoking subprocess.Popen in python

I'm trying to use svnmerge.py to merge some files. Under the hood it uses python, and when I use it I get an error - "The system cannot find the file specified". Colleagues at work are running the ...
2
votes
1answer
71 views

svn merge with svn:externals causes massive add of svn:merge-info properties - any solution?

If you have a directory with an svn:external link it in (which we use extensively at work), then whenever you merge that directory between branches, every file in the directory gets a new ...
2
votes
2answers
92 views

SVN: Create a branch from branch and merge to trunk

We have a branch B1, and it is still not stable yet so it is not in trunk. But we want to work with changes from B1 so we create a branch B2 from B1. So svn copy was done as follows svn copy ...
2
votes
2answers
320 views

merge 2 svn branches together

I'm working with an svn setup I'm not used to and I need to merge new code from one branch to another. There's no code in the trunk folder so I don't know if I should update the trunk to the code ...
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?
2
votes
2answers
512 views

svnmerge and renaming a branch break tracking?

If I'm using svnmerge to track changes for a branch and I want to rename the branch (by doing an svn mv), will this cause any problems with the way the changes are tracked? Is this a safe thing to ...
1
vote
1answer
71 views

SVN merge from trunk to branch after trunk directory name has been changed

I have a situation where I branched off trunk and after a number of days of development work in my branch, someone else changed the name of the project directory in trunk. Something like this: ...
1
vote
1answer
619 views

Versioned items causing obstructions in SVN

I'm using the VisualSVN server, with TortoiseSVN and AnkhSVN in Visual Studio. I have a Trunk to which some devs on other teams are commiting various small changes on a regular basis. I have a ...
1
vote
1answer
284 views

Excluding files on a branch merge with subversion

I have created a feature branch off of the trunk for my project and the feature branch requires some project file configuration changes for it to work. When I merge the feature back to the trunk I ...
1
vote
2answers
88 views

How can I merge my files when the folder structure has changed

I want to perform a major codebase reorganization, but I'm unable to proceed unless I can provide a way for trunk fixes to be easily applied to branches that were taken before the reorganization. One ...
1
vote
1answer
1k views

svnmerge croaks on mysterious conflict

We run svn 1.6.x on both server and client. I branched, worked for several weeks, downmerged a few times, and then set out to upmerge back. svnmerge.py, as logged below, splits the commits into two ...
1
vote
1answer
894 views

svnmerge workflow

How are you using svnmerge for merging and branching in svn?
0
votes
1answer
38 views

Complex subversion 1.4 merge

I've had a long-running feature branch that needs to be merged back into the trunk. But I'm having a heck of a time getting the incantation right, and I could use a little help. the log from my ...
0
votes
0answers
21 views

Merge Trunk range of revisions to branch but skip files not already in branch

We have a project in which the main source code is kept in a folder called /trunk/standard. Ongoing development happens in this folder. We also have separate folders /trunk/custom/(Customer Name)... ...
0
votes
1answer
24 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
1answer
696 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
0answers
70 views

svnmerge.py issue

I finally was able to merge using svnmerge.py how ever I renamed two my branch and I broke svnmerge property set how I can get it. Had a ab-dev branch and it was inited to xy-dev_tmp my merge info ...
0
votes
0answers
105 views

Svn Merge issue using svnmerge.py

I finally was able to merge using svnmerge.py how ever I renamed two my branch and I broke svnmerge property set how I can get it. Had a ab-dev branch and it was inited to xy-dev_tmp my merge info ...
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
2answers
614 views

Merge files with SVN

when there are conflicts between the working copy and the repository during updating, I'm using XCode's built in tool FileMerge. How do I save the merged file? What I currently do is save the merged ...
0
votes
2answers
156 views

Does SVN Merge Save Disk Space?

The SVN book describes deltification as "each time a new version of a file is committed to the repository, Subversion encodes the previous version (actually, several previous versions) as a delta ...
0
votes
2answers
342 views

Svnmerge and a file replaced with a directory

I'm using svnmerge.py to manage our repository. In trunk, file X has been replaced a directory. When trying to merge this to a branch, I get the error: svn: Can't replace 'X' with a node of a ...
0
votes
2answers
161 views

If you merge a specific set of revisions from trunk into a branch with subversion, what happens?

If I make changes in the trunk to 3 different files, say revisions 40, 45, and 47 respectively, where none of those files have changed since revision 15, how can I merge those revisions into the ...