I have made changes to multiple files in my folder locally for testing purposes. However, I would like to revert them back to original condition except a single file, which I still need in the present condition. Presently, I use
svn revert -R .
which reverts all of them to original condition. Could someone help me, how to use a command that excludes a single file in this operation?
Two choices:
revert --cl
revert --target FILE
You can also commit current state of WC into some temporary branch, revert all, merge singe file from branch to trunk