up vote 25 down vote favorite
10
share [g+] share [fb]

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

link|improve this question

69% accept rate
2  
I'm an SVN user and have been comparing Git to SVN to see if I want to eventually want to make the switch. it looks like this may be another example where Git shines with its "git clean" command. – jpierson Sep 21 '10 at 14:11
feedback

15 Answers

up vote 7 down vote accepted

I use this python script to do that:

import os
import re

def removeall(path):
    if not os.path.isdir(path):
        os.remove(path)
        return
    files=os.listdir(path)
    for x in files:
        fullpath=os.path.join(path, x)
        if os.path.isfile(fullpath):
            os.remove(fullpath)
        elif os.path.isdir(fullpath):
            removeall(fullpath)
    os.rmdir(path)

unversionedRex = re.compile('^ ?[\?ID] *[1-9 ]*[a-zA-Z]* +(.*)')
for l in  os.popen('svn status --no-ignore -v').readlines():
    match = unversionedRex.match(l)
    if match: removeall(match.group(1))

It seems to do the job pretty well.

link|improve this answer
Thank you! Will be no problem to convert that to C#. – Stefan Schultze Oct 27 '08 at 8:52
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.

link|improve this answer
2  
Wow, brilliant! – eddiegroves Nov 11 '09 at 20:10
Great! On XP it only works in the list view (right side of explorer) not in the tree view (left side). – Christopher Oezbek Sep 29 '10 at 15:06
Fantastic, only send it to recycle bin, would be nice to do a straight delete. Just what i needed. – Dean Thomas Nov 16 '10 at 9:08
One more "great!" thing, +1 – Andrey Feb 8 '11 at 15:50
feedback

this works for me in bash:

 svn status | egrep '^\?' | cut -c8- | xargs rm

Seth Reno's is better:

svn status | grep ^\? | cut -c9- | xargs -d \\n rm -r 

It handles unversioned folders and spaces in filenames

link|improve this answer
1  
Also usable in Windows in cygwin. – Honza May 4 '09 at 16:56
Is it safe to "share" and manipulate a SVN working copy between the Windows and CygWin builds of svn? – Craig McQueen Jun 30 '09 at 1:39
Actually I guess this example is not manipulating the working copy. Just doing status. – Craig McQueen Jun 30 '09 at 1:40
@Craig - all this is doing is finding all the files in the working copy that haven't been added (by checking for a ? status) and deleting them. Exactly the same as doing a status and then manually deleting the files. – Ken Jun 30 '09 at 9:30
1  
You might consider adding the -d option to xargs for file names with spaces and the -r option to rm for any added directories: svn status | grep ^\? | cut -c9- | xargs -d \\n rm -r – Seth Reno Jan 26 '11 at 19:34
show 5 more comments
feedback

Can you not just do an export to a new location and build from there?

link|improve this answer
For an automated build I would want a clean export. – g . Jun 30 '09 at 14:52
feedback

See: svn-clean

link|improve this answer
feedback

My C# conversion of Thomas Watnedals Python script:

Console.WriteLine("SVN cleaning directory {0}", directory);

Directory.SetCurrentDirectory(directory);

var psi = new ProcessStartInfo("svn.exe", "status --non-interactive");
psi.UseShellExecute = false;
psi.RedirectStandardOutput = true;
psi.WorkingDirectory = directory;

using (var process = Process.Start(psi))
{
	string line = process.StandardOutput.ReadLine();
	while (line != null)
	{
		if (line.Length > 7)
		{
			if (line[0] == '?')
			{
				string relativePath = line.Substring(7);
				Console.WriteLine(relativePath);

				string path = Path.Combine(directory, relativePath);
				if (Directory.Exists(path))
				{
					Directory.Delete(path, true);
				}
				else if (File.Exists(path))
				{
					File.Delete(path);
				}
			}
		}
		line = process.StandardOutput.ReadLine();
	}
}
link|improve this answer
I would rather move the unversioned files, just in case you need them somewhere later. – leppie Oct 27 '08 at 9:24
On a development machine, of course - but in the build VMware, that wouldn't make any sense cause nobody logs on to it and creates files. – Stefan Schultze Oct 28 '08 at 16:39
Thanks, I used this as part of my MSBuild script in cruisecontrol to clean up my source dir prior to builds – gregmac Nov 27 '09 at 15:40
Started off based on your code and went a ways further: github.com/tgmayfield/svn-clean-sharp/downloads – Thomas G. Mayfield Oct 21 '11 at 18:26
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

link|improve this answer
feedback

I added this to my windows powershell profile

function svnclean{
    svn status | foreach { if($_.StartsWith("?")) {Remove-Item $_.substring(8) -Verbose}
}
link|improve this answer
feedback

If you are on windows command line,

for /f "tokens=2*" %i in ('svn status ^| find "?"') do del %i
link|improve this answer
1  
This kinda worked for me. Seemed to choke on some unversioned folders though. – jpierson Sep 21 '10 at 14:06
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.

  <taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
  <taskdef name="for" classname="net.sf.antcontrib.logic.ForTask" />

  <macrodef name="svnExecToProperty">
    <attribute name="params" />
    <attribute name="outputProperty" />
    <sequential>
      <echo message="Executing Subversion command:" />
      <echo message="  svn @{params}" />
      <exec executable="cmd.exe" failonerror="true"
            outputproperty="@{outputProperty}">
        <arg line="/c svn @{params}" />
      </exec>
    </sequential>
  </macrodef>

  <!-- Deletes all unversioned files without warning from the 
       basedir and all subfolders -->
  <target name="!deleteAllUnversionedFiles">
    <svnExecToProperty params="status &quot;${basedir}&quot;" 
                       outputProperty="status" />
    <echo message="Deleting any unversioned files:" />
    <for list="${status}" param="p" delimiter="&#x0a;" trim="true">
      <sequential>
        <if>
          <matches pattern="\?\s+.*" string="@{p}" />
          <then>
            <propertyregex property="f" override="true" input="@{p}" 
                           regexp="\?\s+(.*)" select="\1" />
            <delete file="${f}" failonerror="true" />
          </then>
        </if>
      </sequential>
    </for>
    <echo message="Done." />
  </target>

For a different folder, change the ${basedir} reference.

link|improve this answer
Note: only deletes unversioned files; does not remove empty unversioned folders. – Steve Apr 23 '09 at 12:45
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]".

link|improve this answer
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

#!perl

use strict;

sub main()

{

    my @unversioned_list = `svn status`;

    foreach my $line (@unversioned_list)

    {

        chomp($line);

        #print "STAT: $line\n";

        if ($line =~/^\?\s*(.*)$/)

        {

            #print "Must remove $1\n";

            unlink($1);

            rmdir($1);

        }

    }

}

main();
link|improve this answer
feedback
svn status --no-ignore | awk '/^[I\?]/ {system("echo rm -r " $2)}'

remove the echo if that's sure what you want to do.

link|improve this answer
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?

link|improve this answer
feedback

Linux command line:

svn status --no-ignore | egrep '^[?I]' | cut -c9- | xargs -d \\n rm -r

Or, if some of your files are owned by root:

svn status --no-ignore | egrep '^[?I]' | cut -c9- | sudo xargs -d \\n rm -r

This is based on Ken's answer. (Ken's answer skips ignored files; my answer deletes them).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.