Eclipse:从 Subversion 中排除 jar 文件
我在 MyEclipse 中创建了一个新项目并搭建了一个 Spring 框架。
当我使用 Subclipse 团队共享到 Subversion 时,它会上传所有 .jar 文件,而不仅仅是我的代码。对于 Spring 这意味着大量的开销。
我无法在 -> Team Share 对话框中找到排除 .jar 文件的方法。
这是第一次发生这种情况 - 其他 Subclipse 项目似乎表现得如我所愿。
如何设置排除 .jar?我怎样才能使其成为未来项目的默认行为?
I have created a new project within MyEclipse and scafolded a Spring framework.
When I Team Share to Subversion using Subclipse it is uploading all the .jar files, not just my code. With Spring that means a lot of overhead.
I cant find a way from within the ->Team Share dialogue to exclude .jar files.
This is the first time this has happend - other Subclipse projects seem to have behaved as I hope.
How do you set the settings to exclude .jar? And how can I make that the default behaviour for future projects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我对 Eclipse 或它如何与 subversion 交互一无所知,但是当 subversion 客户端安装在您的路径上时,忽略文件的典型方法是使用 propset 命令。
SVN 手册 - svn:ignore
I don't know a thing about Eclipse or how it interacts with subversion, but with the subversion client installed on your path, the the typical way to ignore files is to use the propset command.
SVN Manual - svn:ignore
这应该回答您的问题: Subclipse svn:ignore
您应该添加“通配符扩展”
*.jar 到 svn:ignore 属性。
This should answer you question: Subclipse svn:ignore
You should add the "Wildcard extension"
*.jar
to the svn:ignore properties.