问题
Practically everytime I stage a textfile (that's most of em), I get the message from git gui (I use msysgit) that It replaced (or is about to) line endings with CRLF's. Obviously I want that (and there's a setting for it huraah), but I don't want the annoying message popped up all the time!
Any way to keep the setting, but turn off/disable the popup message?
I have no idea how this works with GIT on the commandline, but I like msysgit's staging process :) so I'd rather not change to bash.
回答1:
The command line just prints a message, and that's it.
I don't think that the message box can be disabled, unfortunately...
回答2:
One thing you could do, is setting the appropriate setting in the repo-config. The option core.autocrlf
will do these things:
- All text-files will be stored with
LF
line-endings. - When reading from disk,
CRLF
is converted toLF
- When writing to disk,
LF
is converted toCRLF
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.
回答3:
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?.
回答4:
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).
回答5:
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.
来源:https://stackoverflow.com/questions/3841140/git-how-to-get-rid-of-the-annoying-crlf-message-on-msysgit-windows