当您使用 Linux 和 Windows 时,最佳的 git 配置设置是什么?

发布于 2024-11-09 09:05:58 字数 268 浏览 0 评论 0原文

我对 git 配置的 core.eol、core.autocrlf、core.safecrlf 有点困惑。

http://git-scm.com/docs/git-config

我正在使用 Ubuntu和寡妇。

我之前遇到过 ^M 和其他问题。

有人能建议解决这个问题的最佳 git 配置设置吗?

提前致谢。

I am a bit confused with core.eol, core.autocrlf, core.safecrlf for git config.

http://git-scm.com/docs/git-config

I am using Ubuntu and Widows.

I had ^M, and other issues before.

Could anyone suggest the best git config setups for this problem?

Thanks in advance.

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

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

发布评论

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

评论(1

半世蒼涼 2024-11-16 09:05:58

Windows 上的 Git (msysgit) - Unix 或 DOS 行终止,我会使用:

git config --system core.autocrlf false

这将避免任何自动 eol 转换(请参阅“Windows 上的 Git:crlf 设置是什么意思?”了解此选项值的确切含义)。

您可以将其保留为 true,如 git 用 CRLF 替换 LF,但我更喜欢设置 core.eol + 一些 gitattribute 文件,以便微调一些我想要 eol 更改的文件。
有关更多详细信息,请参阅此答案

As detailled in Git on Windows (msysgit) - Unix or DOS line termination, I would use:

git config --system core.autocrlf false

That would avoid any automatic eol transformation (See "Git on Windows: What do the crlf settings mean?" for the exact meaning of this option value).

You can leave it to true, as explained in git replacing LF with CRLF, but I prefer setting core.eol + some gitattribute files in order to fine tune some of the files I want eol changes on.
See this answer for more details.

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