如何避免 svn 存储库中混合 eol 样式

发布于 2024-08-27 03:38:44 字数 144 浏览 8 评论 0原文

是否有防止颠覆存储库中混合 eol 样式的最佳实践。

我知道 svn:eol-style=native 可以设置为自动属性,但我必须确保为所有提交者设置它。如果有侵入性较小的解决方案,我也不愿意对 svn:eol-style 进行回顾性的、存储库范围的更改。

Is there a best practice for preventing mixed eol-styles in a subversion repository.

I know that svn:eol-style=native can be set as an auto-prop, but I would have to ensure that it was set for all committers. I'm also reluctant to do a retrospective, repository-wide change of svn:eol-style if there is a less invasive solution.

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

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

发布评论

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

评论(2

倒数 2024-09-03 03:38:44

请注意,从 SVN 1.8 开始,您可以为存储库中的整个树(包括顶层)设置自动属性,这最终解决了这个问题独立于客户端配置。

有关更多详细信息,请参阅以下内容:

Note that as of SVN 1.8 you can set up auto-props for entire trees within your repository (including at the top level), which finally fixes this issue independent of client-side config.

See the following for more details:

晒暮凉 2024-09-03 03:38:44

您应该在服务器端使用预提交挂钩。

这是您需要的钩子:
http://svn.apache .org/repos/asf/subversion/trunk/contrib/hook-scripts/check-mime-type.pl

这个钩子将强制用户设置正确的 eol-style。

请参阅 svn 文档关于如何使用它们。

另外,您可以实现自己的钩子,它将自动设置 eol-style。

You should use pre-commit hooks on server-side.

Here is a hook you need:
http://svn.apache.org/repos/asf/subversion/trunk/contrib/hook-scripts/check-mime-type.pl

This hook will enforce users to set correct eol-style.

See svn documentation on how to use them.

Also, you can implement your own hook which will set eol-style automatically.

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