记录个小错误吧~
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory
解决:
git config --global core.autocrlf false
原因:
因为路径中存在 / 的符号转义问题,设置为false不转符号
记录个小错误吧~
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory
解决:
git config --global core.autocrlf false
原因:
因为路径中存在 / 的符号转义问题,设置为false不转符号