Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的工作副本中有很多修改过的文件。
我如何知道哪些文件是新的(SVN 中不存在),以及如何添加这些文件?
如果我在我的工作副本中删除一个文件,我怎样才能在 SVN 中删除它?
我使用 Windows 并且想要 DOS 或 PHP 解决方案。
svn status将告诉您哪些文件当前不在您的存储库中,哪些文件将被合并等。
svn status
如果您导航到版本控制下的文件夹并运行
应列出已添加(旁边的 A)、已删除 (D)、已修改文件 (M) 和全新 (?) 的列表。
不要在 SVN 之外删除,使用 SVN 通过运行删除文件
svn delete "filename"
如果您在更新时不这样做,他们将继续回来。
完整的命令列表:
http://www.linuxfromscratch.org/blfs/edguide/chapter03.html