Hi, I'm using command line svn verison 1.4.2 to manage my working copy. Today, I cut some files from folder A to folder B. Where folder A is already under version control and folder B is not.
I used "svn st" to check status, and not surprisingly found these file from folder A were marked as "!". According to the svnbook from red-bean.com, it means "Item is missing (e.g., you moved or deleted it without using svn)."
My questions it that what is the best practice to delete files in my working copy?
In the end, I have to delete these files using command line one by one.
$ svn del FolderA/figures_index.log FolderA/figures_index.ps FolderA/figures_index.dvi FolderA/~$R_Paper_Final.doc
Is there any quicker way to delete these files in this folder?
Thank you in advance