CyanSalt / notebook

3 stars 0 forks source link

在 Git for Windows 上强制使用 LF 代替 CRLF #34

Open CyanSalt opened 3 years ago

CyanSalt commented 3 years ago

path: enforce-lf-on-git-for-windows


# .gitconfig
[core]
    eol = lf
    autocrlf = input

或者是执行

git config --global core.eol lf
git config --global core.autocrlf input

如需刷新项目,可以执行:

git rm -rf --cached .
git reset --hard HEAD