从SVN工作副本中删除所有“丢失”文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从SVN工作副本中删除所有“丢失”文件相关的知识,希望对你有一定的参考价值。

If you accidentally deleted files from a subversion working copy, subversion marks them missing instead of deleted. This command will delete them correctly from the repository.
  1. svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )

以上是关于从SVN工作副本中删除所有“丢失”文件的主要内容,如果未能解决你的问题,请参考以下文章