Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是唯一一个在 Windows 计算机上编写项目代码的人。其余的都使用 Unix 计算机。
服务器也是基于 Unix 的。关于设置 Git,我需要采取哪些预防措施?尤其是它提供 3 个行尾选项的部分……
这在某种程度上取决于您和您的同事使用的工具。由于您是唯一使用 Windows 的人,我假设代码库已经在使用 Unix 样式的换行符而不是 Windows 样式的回车 + 换行符。
如果是这种情况,那么您可以在本地使用 Windows 行尾,并让 Git 在您提交时自动将文本文件转换为 Unix 样式,或者您可以在本地使用 Unix 行尾,然后将您的编辑器设置为使用它们.
要让 Git 自动将 Windows 风格的结尾转换为 Unix 风格,请使用
git config core.autocrlf true