git在windows下對於pull下來檔案的換行有三種處理方式:
- true: check out時自動將\n轉換成\r\n,commit時將\r\n轉成\n.
- input: check out時不轉換\n,commit時將\r\n轉成\n.
- false: 不做任何轉換
若不清楚目前設定是哪一種,可以用下列指令查詢:
git config core.autocrlf
若要修改成input,則可用下列指令修改(請用超級管理者執行命令提示字元)
git config --system core.autocrlf input
或是(一般使用者)
git config --global core.autocrlf input
文章短網址: https://slanla.com/__xsj31s