I am currently making a script in which I have been coming familiar with Tortoise SVN and it's corresponding command line functions.
I have the script properly updating to find which "Revision" properly builds with a series of test. After the script records that variable (of the version number to be specific), I update to the HEAD revision (So that I am able to a commit after this process I am having trouble with).
My question: How do I revert to a specific revision number from the command line?
I know that you can svn update -r , but how can you do it with a revert so that way it changes my working copy to the modified state; later that can be committed? I only ask because revert doesn't accept the -r argument; unless I am making a mistake.
I found out how Revisions/Updates it works from this question: reverting with tortoise SVN But I couldn't find any solid answers on this. Any help would be appreciated.