git commit get fatal error “fatal: CRLF would be replaced by LF in”

前端 未结 9 1660
渐次进展
渐次进展 2020-11-29 16:10

I\'m using Ubuntu 13.10 x64, and I am working on a project that some developers are using Windows , I recently changed the git config core.eol to \"lf\" and

9条回答
  •  心在旅途
    2020-11-29 16:39

    You need to add all files that git status displays as modified:

    git add file1
    git add file2
    

    And then commit your changes :

    git commit
    

    This will keep your local files as is, but will autocrlf them on the remote repository.

提交回复
热议问题