Windows NTFS Zone.Identifier alternate data stream files were accidentally committed. The colon in the filename is invalid on Windows, causing git checkout to fail on Windows runners. Also added *:Zone.Identifier to .gitignore to prevent this recurring. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
69 lines
625 B
Plaintext
69 lines
625 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
/lib/
|
|
/lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
.venv
|
|
|
|
# uv
|
|
uv.lock
|
|
.python-version
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Application specific
|
|
*.log
|
|
config/*.yaml
|
|
!config/default_config.yaml
|
|
.local-transcription/
|
|
|
|
# Model cache
|
|
models/
|
|
.cache/
|
|
|
|
# PyInstaller
|
|
*.spec.lock
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Vite / Svelte build output
|
|
dist/
|
|
|
|
# Tauri
|
|
src-tauri/target/
|
|
|
|
# Windows NTFS alternate data streams
|
|
*:Zone.Identifier
|