使用 Subclipse 删除 SVN 中的项目
I would like to completely remove a project from version control from inside Eclipse using the Subclipse plug-in.
My requirement is similar to the one at this question except that I don't want to keep the local files either.
The Team context menu doesn't offer anything promising.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
转到
您可以右键单击文件夹并删除它们。
Go to
You can then right click on folders and delete them.
恐怕您将不得不从命令行以艰难的方式完成此操作。 http://svnbook.red-bean.com/en/1.1/re08.html
I am afraid you will have to do this the hard way from the command line. http://svnbook.red-bean.com/en/1.1/re08.html
您可以从 Eclipse 中删除所需的所有文件和文件夹,然后执行
Team ->提交...
。这将从 Eclipse 中删除该项目并在本地将其删除。You could delete all the files and folders that you want from Eclipse and then do
Team -> Commit...
. This will delete the project from Eclipse as well as remove it locally.