I am in version 100 svn co -r92 http://www.projectname.svn/trunk projectname seems to work but how do I get this v92 version committed? If I do an svn up I get conflicts If I do svn commit it won't work
Any idea's I'm lost here
Revert a File to a Specified RevisionRight-click a file in the Current Folder browser and select Source Control > Revert using SVN. In the Revert Files dialog box, choose a revision to revert to. Select a revision to view information about the change such as the author, date, and log message. Click Revert.
It is impossible to "uncommit" a revision, but you can revert your working copy to version 1943 and commit that as version 1945. The versions 1943 and 1945 will be identical, effectively reverting the changes.
svn revert will revert not only the contents of an item in your working copy, but also any property changes. Finally, you can use it to undo any scheduling operations that you may have performed (e.g., files scheduled for addition or deletion can be “unscheduled”).
svn up -rHEAD # be sure you're updated with the latest HEAD
svn merge -rHEAD:92 . # reverse-merge back to revision 92
svn commit # commit
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With