从版本控制中删除 IntelliJ 项目
有没有办法从 IntelliJ 项目中删除版本控制?我可以浏览目录结构并删除命令行上的所有 .svn 文件,但我只是想知道是否有“正确”或更简单的方法来做到这一点? 提前致谢。
Is there a way to remove version control from an IntelliJ project? I could go through the directory structure and remove all the .svn files on the command line, but I just wonder if there's a "proper" or easier way to do that?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想最好的方法是删除项目设置中的 svn 配置:
File >设置,然后版本控制。
列表中应该有 Suversion 项目。
尝试使用右侧的“-”按钮删除此行。
希望这有帮助。
I suppose the best way is to remove svn configuration in the project settings:
File > Settings, then Version Control.
There should be Suversion item in the list.
Try to remove this line with the "-" button on the right.
Hope this helps.
文件->设置->版本控制->选择项目->单击按钮(红色)
File -> Settings -> Version Control -> select Project -> Click button(red)
你能更好地表述你的问题吗...
IntellJ 是一个 IDE。如果您使用它从 Subversion 存储库下载源代码,请尝试使用导出命令而不是签出命令。这将下载所有没有
.svn
目录的源文件。当然,您将无法将任何更改签入 Subversion 存储库。打开存储库浏览器,然后右键单击该目录,而不是按底部的“签出”按钮。您将看到导出菜单项。选择该选项,将从 Subversion 存储库中检出源代码,而不包含
.svn
文件夹。当然,您将无法重新签入任何内容。Can you better phrase your question...
IntellJ is an IDE. If you're using it to download source code from a Subversion repository, try the export command instead of checkout. That will download all the source files without the
.svn
directories. Of course, you'll be unable to check in any of your changes back into the Subversion repository.Open the repository browser, then right click on the directory instead of pressing the Checkout button on the bottom. You'll see the export menu item. Select that, and that will checkout the source from the Subversion repository without the
.svn
folders. Of course, you won't be able to check anything back in.