svn在window下CMD命令

添加文件夹内所有新增文件:

svn add . --no-ignore --force

删除文件夹内所有miss文件:

powershell "svn status | ? { $_ -match '^!s+(.*)' } | % { svn del $Matches[1] }"
原文地址:https://www.cnblogs.com/change4587/p/11057318.html