If I run svn rm file, the file is removed from the local working copy.
What I do now is:
$ cp file file2
$ svn rm file
$ svn ci
$ mv file2 file
How do I avoid svn also deleting the local file when using svn rm?
If I run svn rm file, the file is removed from the local working copy.
What I do now is:
$ cp file file2
$ svn rm file
$ svn ci
$ mv file2 file
How do I avoid svn also deleting the local file when using svn rm?