Add .gitattributes with '* text=auto eol=lf' so Windows CRLF working copies no longer surface as whole-file content changes; 37 tracked files had flipped LF->CRLF with zero content change. Ignore /tmp/ session scratch and research/experiments/node_modules, a Windows junction git records as a symlink so **/node_modules/ misses it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016yuKikAXbByLvsUnh55SRd
52 lines
728 B
Plaintext
52 lines
728 B
Plaintext
# Raw and local reference data
|
|
/Dataset/
|
|
/LLM-based Agent构建/
|
|
|
|
# Project-local runtimes and package libraries
|
|
/.python/
|
|
/.venv-research/
|
|
/.r-library/
|
|
/.tools/
|
|
|
|
# Downloads and caches
|
|
/.downloads/
|
|
/.cache/
|
|
/.uv-cache/
|
|
/Model.cachepytensor/
|
|
**/__pycache__/
|
|
**/node_modules/
|
|
*.py[cod]
|
|
.ipynb_checkpoints/
|
|
|
|
# Rebuildable native outputs
|
|
/research/environment/cuda-smoke.exe
|
|
*.obj
|
|
*.exp
|
|
*.lib
|
|
*.pdb
|
|
|
|
# R and editor state
|
|
.Rhistory
|
|
.RData
|
|
.Ruserdata
|
|
.Rproj.user/
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS metadata
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Model weights and large binary checkpoints
|
|
*.safetensors
|
|
*.ckpt
|
|
*.pth
|
|
*.pt
|
|
*.onnx
|
|
|
|
# Session scratch
|
|
/tmp/
|
|
|
|
# Windows junction git sees as a symlink, so **/node_modules/ misses it
|
|
/research/experiments/node_modules
|