Subversion:如何添加当前被忽略且存在于大多数工作副本中的目录?
如何在 subversion 中添加当前被忽略的目录。众所周知,该目录存在于大多数工作副本中。当您从 svn:ignore 中删除它并使用 svn add 添加它时,用户将在更新时收到此消息:
An unversioned directory of the same name already exists
目标是避免该消息并简单地将现有目录与存储库中的内容合并。
How do you add a directory in subversion which is currently ignored. It is known that the directory exists in most working copies. When you remove it from svn:ignore and add it with svn add, users will get this message on update:
An unversioned directory of the same name already exists
The goal would be to avoid the message and simply merge the existing directory with the contents from the repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行 svn up --force将会更新该目录,即使该目录已经存在。
Running
svn up --force <dirname>
will update the directory even if it already exists.