尝试Git Commit -> "master"
Arduino INO
文件时,我收到错误消息:
TortoiseGit
fatal: LF would be replaced by CRLF in xxx.INO
我在安装Git for Windows时选择了“提交行结尾”。
对此有何想法?感谢。
答案 0 :(得分:1)
这不是Arduino特定的问题。唯一的Arduino特定部分是Arduino的IDE不使用CRLF。说过你可能想咨询"What's the best CRLF handling strategy with git?"
阅读本文后,为您的ino文件添加一行 .gitattributes ,以便不使用CRLF。
*.ino text eol=lf