哪些 Grails 项目文件不应该添加到版本控制中? (Grails 1.3.x)

发布于 2024-10-03 14:21:29 字数 200 浏览 4 评论 0原文

(这个问题之前已经被问过,但不久前:针对 Grails .gitignore 的建议;它已回答 grails 1.0.x)

Grails 1.3.x 项目中的哪些文件不应包含在版本控制中?

(This question has been asked before, but a while back: Suggestions for Grails .gitignore; it was answered for grails 1.0.x)

What files in a Grails 1.3.x project should not be included in version control?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单身情人 2024-10-10 14:21:29

请参阅 http://grails.org/Checking+Projects+into+SVN - 它有一个简短的忽略列表。

我会包含 .settings/ 但我倾向于将 .classpath 和 .project 保留在源代码管理中,因为它们随项目而变化。话又说回来,也许简单地运行grailsintegrate-with--eclipse会更好。

See http://grails.org/Checking+Projects+into+SVN - it has a short list of ignores.

I would include .settings/ but I tend to keep .classpath and .project in source control because they change with the project. Then again, perhaps it's better simply to run grails integrate-with --eclipse.

心不设防 2024-10-10 14:21:29

.gitignore:

# Maven output directory
target/

# Eclipse Project files
.classpath
.project
.settings/

# OS X generated files
.DS_Store

.gitignore:

# Maven output directory
target/

# Eclipse Project files
.classpath
.project
.settings/

# OS X generated files
.DS_Store
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文