I forked a copy first and then changed one of the files.
The screenshot below appeared during the pull request. Why is this happening?
I only changed line 16. Why does the entire file appear to be different when comparing the files when only one line is changed?
It may be a space and tab conversion problem, depending on some settings of the development tools you use
windows uses
CRLF
two characters, line break*Unix and Mac use
LF
newline by defaultSo after your windows machine saves the modification, it will automatically change the
LF
改为CRLF
in the file to