由于文件夹名称相同,只是大小写不同,SVN 更新失败
不知何故,有人设法创建两个同名的文件夹,除了第一个字母的大小写(例如“trunk”和“Trunk”),这会导致 svn 更新失败(因为 Windows 不区分大小写,不允许创建这两个文件夹) 。
如何在 Windows 上恢复这些更改(并且无需直接访问 svn 服务器)?
我使用的是 tortoise svn 客户端,服务器是 Unix(我猜为什么它允许两个文件夹存在)。
Somehow someone has manage to create two folders with the same name except the case of the first letter (eg "trunk" and "Trunk") which causes the svn update to fail (because windows being case insensitive wont allow the creation of both folders).
How can I revert these changes on windows (and without direct access to the svn server)?
I'm using the tortoise svn client, and the server is Unix (which I'm guess why it allowed both folders to exist).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用存储库浏览器直接在存储库上工作;直接删除目录或查看日志并找到引入问题的修订版并恢复该修订版的更改。
Use the repository browser to work directly on the repository; either delete the directory directly or view the log and find the revision which introduced the problem and revert changes from that revision.
您可以
svn rename
您拥有的那个。You could
svn rename
the one you have.