git on windows 需要执行的命令

<!-- lang: shell -->
git config --global core.filemode false

git config --global core.autocrlf true

第一句是忽略文件权限的改动。

第二句是将文件checkout时自动把LF转成CRLF,check in 时自动把CRLF转成LF

你可能感兴趣的:(git on windows 需要执行的命令)