does anybody know a way to recursively remove all files in a working copy that are not under version control? (I need this to get more reliable results in my automatic build VMware.)
Thanks, Stefan
|
does anybody know a way to recursively remove all files in a working copy that are not under version control? (I need this to get more reliable results in my automatic build VMware.) Thanks, Stefan
| |||||
feedback
|
|
I use this python script to do that:
It seems to do the job pretty well. | |||
|
feedback
|
|
I ran across this page while looking to do the same thing, though not for an automated build. After a bit more looking I discovered the 'Extended Context Menu' in TortoiseSVN. Hold down the shift key and right click on the working copy. There are now additional options under the TortoiseSVN menu including 'Delete unversioned items...'. Though perhaps not applicable for this specific question (i.e. within the context of an automated build), I thought it might be helpful for others looking to do the same thing. | |||||||||||
feedback
|
|
this works for me in bash:
Seth Reno's is better:
It handles unversioned folders and spaces in filenames | |||||||||||||||
feedback
|
|
Can you not just do an export to a new location and build from there? | |||
|
feedback
|
|
My C# conversion of Thomas Watnedals Python script:
| |||||||||
feedback
|
|
If you are using tortoise svn there is a hidden command to do this. Hold shift whilst right clicking on a folder to launch the context menu in windows explorer. You will get a "Delete Unversioned Items" command. see the bottom of this page for details http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-rename.html | |||
|
feedback
|
|
I added this to my windows powershell profile
| |||
|
feedback
|
|
If you are on windows command line,
| |||||
feedback
|
|
I couldn't get any of the above to work without additional dependencies I didn't want to have to add to my automated build system on win32. So I put together the following Ant commands - note these require the Ant-contrib JAR to be installed in (I was using version 1.0b3, the latest, with Ant 1.7.0). Note this deletes all unversioned files without warning.
For a different folder, change the | |||
feedback
|
|
If you don't want to write any code, svn2.exe from svn2svn does this, also there's an article on how it's implemented. Deleted folders and files are put in the recycle bin. Run "svn2.exe sync [path]". | |||
|
feedback
|
|
For the people that like to do this with perl instead of python, Unix shell, java, etc. Hereby a small perl script that does the jib as well. Note: This also removes all unversioned directories
| ||||
|
feedback
|
remove the echo if that's sure what you want to do. | ||||
|
feedback
|
|
Using TortoiseSVN: * right-click on working copy folder, while holding the shift-key down * choose "delete unversioned items" How can I delete all unversioned/ignored files/folders in my working copy? | |||
|
feedback
|
|
Linux command line:
Or, if some of your files are owned by root:
This is based on Ken's answer. (Ken's answer skips ignored files; my answer deletes them). | ||||
|
feedback
|