stevenhalim / cpbook-code

CP4 Free Source Code Project (C++17, Java11, Python3 and OCaml)
2k stars 493 forks source link

Convert all CRLF to LF #70

Closed howsiwei closed 4 years ago

howsiwei commented 4 years ago

Fixes #68.

Converted by running

git ls-files | xargs dos2unix

No other changes are introduced, this can be verified by running

git diff master crlf --ignore-cr-at-eol

which should produce empty output.

stevenhalim commented 4 years ago

Thanks :O, I initially wanted to do this manually while automated script is better.