Suppose that I have two massive folders in SVN: test and prod. I'm trying to use the following svn command to merge the content from test into prod:
svn merge ./prod@HEAD ./test@HEAD ./prod
However, my SVN repository is huge and this process takes an enormous amount of time. Is there any way that I can make a simpler merge statement which will be more processor friendly? Perhaps a server-URL based merge?
Any insight is appreciated....