Windows batch files require CRLF — LF-only caused cmd.exe to exit silently mid-script. .gitattributes ensures *.bat stays CRLF. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
149 B
Plaintext
8 lines
149 B
Plaintext
# Default: LF for all text files
|
|
* text=auto eol=lf
|
|
|
|
# Windows-only files must stay CRLF
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|
|
*.ps1 text eol=crlf
|