How to delete…
May 25th, 2011 by jde
How to delete an entire project
svn delete -m "Deleting old chat project" http://svn.example.com/path/to/chat
How to delete files and folders
cd /into/your/working/copy svn delete somefile.txt svn delete somedir svn commit -m "Removed a file and a dir"
If you delete a file, the file is removed physically from the disk when `svn delete` is executed. But directories are not removed until you fire `svn commit`.
- No Comments »
- Posted in Subversion

