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.
如何在 subversion 中添加当前被忽略的目录。众所周知,该目录存在于大多数工作副本中。当您从 svn:ignore 中删除它并使用 svn add 添加它时,用户将在更新时收到此消息:
An unversioned directory of the same name already exists
目标是避免该消息,并简单地将现有目录与存储库中的内容合并。
svn up --force <dirname>即使目录已经存在,运行也会更新目录。
svn up --force <dirname>