美文网首页
Git错误fatal: CRLF would be replac

Git错误fatal: CRLF would be replac

作者: 田丰w | 来源:发表于2021-02-08 18:59 被阅读0次

    windows 与 linux/macos 对换行的使用不同造成

    修改相关的 git 配置

    git config --global core.autocrlf input
    git config --global core.safecrlf warn

    配置说明

    git config --global core.autocrlf true # add 时去掉CRLF, checkout 时加回CRLF (应该只在win下配置)
    git config --global core.autocrlf input # commit 时去掉CRLF, checkout 时什么都不做 (我的选择)
    git config --global core.autocrlf false # 什么都不做 (所有开发人员都在相同平台下)

    git config --global core.safecrlf warn # 发现CRLF是警告并继续

    参考

    相关文章

      网友评论

          本文标题:Git错误fatal: CRLF would be replac

          本文链接:https://www.haomeiwen.com/subject/ljcfxltx.html