Whilst merging revisions from the trunk to a branch I am looking to achieve the following:
Revision 1 (This is also the branch version):
First Line
Revision 2:
First Line
Second Line
Revision 3:
First Line
Second Line
Third Line
By executing the following command on the branch:
svn merge -c 3 [trunkurl]
I am expecting to get the following result
First Line
Third Line
But instead I am getting a tree conflict. This technique seems to work fine for adding new lines in the middle of files, just not to the end of a file.