Hi I am trying to merge one single revision using CL in SVN using this command:
svn merge -r 5454 URL
but I am getting the following error
svn: Second revision required
My revision is not the latest revision but buried about 90 revisions from the latest update. Any thoughts on what I am doing wrong?
When you need to provide a diff (including
diffandmergecommands), you can use either-rSTART:FINISH(-r5453:5454in your case) or-cSINGLE(-c5454in your case).