I want to have a feature branch that I use for development off of the main SVN trunk, and merge changes from there back into trunk. I'm using SVN 1.6 and Subversive plugin for Eclipse.
Here's the thing, I want to do all development in that feature branch, and I don't want to have to delete the feature branch every time I merge from the feature branch back to the trunk then create a new one for further development, which is necessary after I use svn merge --reintegrate.
I could use --record-only, which is a valid option, but it would require me to note a revision number from before for entering into that command.
I'm wondering if I could merge from feature branch to trunk without using reintegrate, as in When is the reintegrate option really necessary?? Is there a way to do it that wouldn't require noting a revision number?
$ svn merge -r 250:HEAD http://svn.red-bean.com/repos/branches/my-branch
What would happen if I didn't use 250 above, where 250 is the revision from which feature branch was branched from trunk? Meaning I always used 'svn merge -r 1:HEAD ...'? (I wouldn't ever be 'cherry picking' revisions, it would always be a full merge from trunk to branch and from branch to trunk.)