忽略SVN项目中的Eclipse项目文件
我在 Eclipse 中设置了一个支持 SVN 的 PHP 项目。现在,Eclipse 将其项目文件 .buildpath 和 .project 添加到项目中,而 Subclipse 想要将其添加到存储库中。
现在我可以使用 svn:ignore 让 SVN 忽略这些文件,但由于各种原因这不是一个选择。那么,有没有办法让 Eclipse 和 Subclipse 忽略这些文件(无论如何它都应该)?
I have a PHP project set up in Eclipse with SVN support. Now, Eclipse adds its project files .buildpath and .project to the project and Subclipse wants to add it to the repository.
Now I could just use svn:ignore to let SVN ignore the files, but that's not an option for various reasons. So, is there a way to make Eclipse and Subclipse ignore the files (which it should anyway)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
首选项
>团队
>忽略的资源
Preferences
>Team
>Ignored Resources
你可以使用
global-ignores
吗?如果是,请在您的config
文件中进行自定义:C:\Documents and Settings\%USERID%\Application Data\Subversion\config
~/.subversion/config
Can you use
global-ignores
? If yes, customize it in yourconfig
file:C:\Documents and Settings\%USERID%\Application Data\Subversion\config
~/.subversion/config
如果要忽略 Eclipse 忽略资源中的文件夹,则
.settings
文件夹的模式为*/.settings/*
If you want to ignore folders in the eclipse ignored resources, the pattern is
*/.settings/*
for the.settings
folder for example您可以在提交窗口中取消选中“显示未版本控制的文件”框吗?
Can you just uncheck the box for "Show unversioned files" in the commit window?
如果您右键单击 Eclipse 中的文件夹,然后选择显示属性...,您可以在此处添加
svn:ignore
并将其向下级联到每个文件夹(如果您这样做)选择。您可以将以下内容作为模板:
If you right click on the folder in eclipse, and select Show Properties... you can add the
svn:ignore
right there and have it cascade down to every folder if you choose.You could the following as a template:
检查单击“隐藏菜单”以获取未版本控制的路径
check the click on hide Menus for the unversioned path