GIT: How to get rid of the annoying CRLF message on msysgit (windows)?

旧时模样 提交于 2019-12-05 07:13:43

The command line just prints a message, and that's it.

I don't think that the message box can be disabled, unfortunately...

One thing you could do, is setting the appropriate setting in the repo-config. The option core.autocrlf will do these things:

  1. All text-files will be stored with LF line-endings.
  2. When reading from disk, CRLF is converted to LF
  3. When writing to disk, LF is converted to CRLF

You can set this option in git-shell

$ cd path/to/repo
$ git config core.autocrlf true

And then, delete any file but the .git folder itself from the repo and run

$ git reset --hard
$ git commit -am "Line endings fixed."

To fix he line endings.

PS: There is a small chance, that binary files are accidentially threated as text files and may be corrupted, then you have to read the manual or just ask here.

msbmsb

Maybe make sure: core.autocrlf=false.

I don't really know msysgit, but after a little searching, I found a couple of related msysgit / threads.
Also see a related SO Q: What's the best CRLF handling strategy with git?.

Simple, use CRLF as line endings in your text editor, and git will have nothing to warn you about. (Execpt maybe once, if the pulled file doesn't have CRLF line endings).

Since you are using msysgit, I will assume core.autocrlf is set to tru (the default setting in msysgit installation)

You could try setting core.safecrlf to false, and see if that has any influence on this kind of message.

git config core.safecrlf false

You can also try version a .gitattributes file and set a:

*        eol=crlf

directive to see if that explicit text attribute has any bearing on this warning message.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!