添加文件夹内所有新增文件:
svn add . --no-ignore --force
删除文件夹内所有miss文件:
powershell "svn status | ? { $_ -match '^!\s+(.*)' } | % { svn del $Matches[1] }"