简体   繁体   中英

How do I get git to stop changing newlines in my files?

I'm using git/github with Eclipse/EGit on Windows. Something -- not sure if it's git or EGit -- is modifying my files by playing games with newlines.

Leaving aside the mystery of what a version control is doing modifying files by itself, how do I configure this software so it never, ever, changes my files?

git config --system core.autocrlf false
git config --system core.whitespace cr-at-eol

Don't allow it to change anything or report problematic CR bytes at the end.

You have many options depending on your OS:

http://help.github.com/line-endings/

The reason for the seemingly bizarre behavior is explained there. Basically the code is being shared (git and github) but the OS may be different. As different OS's treat linefeeds differently, something has to change...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM