Automatically remove Subversion unversioned files

前端 未结 30 3162
感情败类
感情败类 2020-11-28 18:54

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

30条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 19:18

    I added this to my windows powershell profile

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

提交回复
热议问题