After encountering a line ending issue on Windows for the git setting, here is the solution.
$ git config --global core.autocrlf true
This setting tells Git to convert all line endings to LF when checking files into the repository and CRLF when checking them out on Windows. This ensures consistent line endings in the repository and handles the necessary conversions on Windows for compatibility.
4 May 2025
Potato Codex
4 May 2025
Potato Codex