A company I am working for has the following setup using subversion:
- trunk is checked out on the production server
- the "staging" branch is checked out on the staging server
- the "development" branch is checked out on the development server (and tested by jenkins)
- then we have feature branches made off of development.
The issue I've encountered is that there were a suite of related features, and the first few were each done in their own feature branch, but then to "save time" the others were done all together in an "omnibus" branch -- except that the first few features were reintegrated into development and also included in the omnibus, so now when I'm trying to reintegrate the omnibus into development, I've gotten a couple dozen tree conflicts.
The conflicts are a mix of directories and files, but all of them have this line following the "C" line from svn status local add, incoming add upon merge
I am still investigating, but so far, they seem to be conflicts in name only -- ie no difference in the content of the files. So I'm wondering if I need to do anything other than the equivalent of "mark as merged" (as it would be called in eclipse). What is the command line equivalent? Or if I should be doing something else, what would that be?
FWIW, I want the command line solution because I'm trying to produce a script that will automate feature branch merges.