問題敘述:
CRLF : Carriage-Retturn Line-Feed
在Windows中的換行符號為CRLF,Linux底下為LF
因為文件中的換行符號為LF,當git add .時,系統會提示: LF將會被轉換成CRLF
解決方式:
將.git/砍掉,重建之前先下讓系統不會去進行換行符號轉換的指令,
在重新git init, git add .
Example:
把.git的資料夾砍掉
[html]
rm -rf .git/
git config –global core.autocrlf false
[/html]
再重新建立
[html]
git init
git add .
[/html]