views:

79

answers:

2

In tortoise svn, is it possible to merge two revisions within the trunk (not two branches)? ![alt text][1]

A: 

There should be no problem with this.

If the svn client you are using is giving you an error you could always branch from the revision you want to merge in then use that branch.

Brian R. Bondy
+1  A: 

In svn, you merge changes to a working copy; a revision represents a static tree. You can certainly use svn merge to apply the change between two revisions onto your working copy.

In fact, svn doesn't really know about trunks or branches at all - branches are just a convention of looking at copies-with-history as a branch.

Avi