SVN command to delete all locally missing files

后端 未结 12 2376
说谎
说谎 2020-12-12 09:13

In SVN is there a command I can use to delete all locally missing files in a directory?

Or failing that, some way of listing only those files that are missing (or, i

12条回答
  •  时光取名叫无心
    2020-12-12 09:52

    It is actually possible to completely remove the missing.list from user3689460 and Paul Martin

    for /F "tokens=* delims=! " %%A in ('svn status ^| findstr /R "^!"') do (svn delete "%%A")
    

提交回复
热议问题