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.
in many cases
svn merge
is preferablehowever when I occured a similar problem, I found that a checkout to an earlier (stable) revision was more suitable, because it doesn't change my local changes and I can later still update to the current version
It's important to get the terminology correct, because "revert" means something very specific in Subversion, whereas in English it can have multiple meanings based on context.
svn update -r
is actually just updating the file to a specific (past) revision. You're "reverting" to an old revision, but you aren't really changing anything (and if you attempt to edit, then commit, you'll get rejected because you aren't editing the latest revision). Again, this is not what you're looking for.HEAD
. In Subversion, this is referred to as a reverse merge. This is described in the Subversion manual - you supplysvn merge
with a range of revision numbers, in reverse order (newest to oldest), then commit the resulting working copy.