如何从 svn 存储库浏览器撤消删除标签文件夹操作
不幸的是我从 svn repo 浏览器中删除了整个标签文件夹。我可以撤消吗?如果有任何检索数据的解决方案请帮助我。
Unfortunately I deleted my entire tags folder from svn repo browser. Can I undo that? If there is any solution to retrieve data please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用 TortoiseSVN,您无法撤消删除操作,但您可以将
tags
文件夹从旧版本复制到您的HEAD
版本。操作方法如下:HEAD
的按钮(右上角)。标签
之前输入修订号。tags
文件夹。tags
路径 (http: //域/svn/repo/tags)。tags
在那里。如果您自删除
tags
后未提交任何内容,则可以按照此操作 回答完全删除不需要的修订(需要访问 svn 服务器并使用svnadmin
命令)。Using TortoiseSVN only you cannot undo the delete operation, but you can copy the
tags
folder from older revision to yourHEAD
revision. Here is how you do it:HEAD
(right top corner).tags
.tags
folder in repo-browser.tags
(http://domain/svn/repo/tags).tags
are there.If you haven't committed anything since
tags
deletion, you can follow this answer to completely remove unwanted revisions (requires access to svn server and usage ofsvnadmin
commands).