Skip to content

Commit 2190b4f

Browse files
committed
Fix CRLF line endings and update documentation
- Fix CRLF to LF on all .sh and .py files (now work in Codespaces and Docker) - Add detailed Codespaces instructions to README with visual guide - Add script reference table showing which scripts for each platform - Add .gitattributes to prevent future CRLF issues - Update tracking/scripts.yaml with Codespaces scripts documentation
1 parent ad944a7 commit 2190b4f

32 files changed

Lines changed: 10597 additions & 10529 deletions

.gitattributes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Normalize all text files
2+
* text=auto
3+
4+
# Shell scripts MUST use LF (for Linux/Codespaces)
5+
*.sh text eol=lf
6+
*.bash text eol=lf
7+
8+
# Python scripts use LF
9+
*.py text eol=lf
10+
11+
# Windows batch files use CRLF
12+
*.bat text eol=crlf
13+
*.cmd text eol=crlf

0 commit comments

Comments
 (0)