Delete Unversioned Items of Externals in SVN -


I have a project SDK in SVN which is external to multiple projects. for example. A project structure like the following in SVN:

  Project_SDK __ project 1 \ _ project 2 \ _ project 2 etc. ..   

About me shift Know-gt; Right click that brings context menu that allows me to delete false files. However, if you do this at the Project_SDK level, then it will be all sub-folders (Project 1, Project 2, etc.). ) Does not remove untrue items.

How to remove unblocked items from Project_SDK level for all projects? Or is the only way to manually right-click on each project?

If not, what is the svn command to remove unrelated objects, so that I can create a .bat file which will be automated for me?

If you have a Unix-Summary shell (signin or equivalent) then you can do this:

  svn status | Grep '^ \?' | Cut -c9- | Xargs rm]   

Perhaps someone familiar with MS-DOS can help translate this.

Comments