在使用 Git 进行版本控制时,有时候会遇到在文件中出现了 ^M 字符的情况。这个问题通常出现在 Windows 操作系统中,并且会影响文件在不同操作系统之间的可移植性。
^M 字符是回车符的表示,在 Windows 操作系统中,每个文本行的结尾都是由回车符 (\r) 和换行符 (\n) 组成的,而在类 Unix 系统中只使用换行符 (\n)。
为了解决这个问题,可以使用 Git 提供的 core.autocrlf 选项来自动地处理回车符。可以使用以下命令来设置 core.autocrlf 选项:
# 在 Windows 系统中,将回车符转换为换行符提交到 Git 仓库,在检出时自动转换回来(即恢复为回车符)。 git config --global core.autocrlf true # 在 Linux 或 macOS 系统中,提交时不会将回车符转换为换行符,在检出时也不会进行转换。 git config --global core.autocrlf input
https://blog.csdn.net/qingzhuyuxian/article/details/134313287
如果还没解决:https://blog.csdn.net/xuxu_123_/article/details/131139014
3.2 设置core.whitespace为cr-at-eol,告诉 Git 忽略行尾的回车。
git config --global core.whitespace cr-at-eol
标签:core,Git,autocrlf,回车符,git,去除,diff,换行符 From: https://www.cnblogs.com/rxbook/p/18051979