56 lines
522 B
Plaintext
56 lines
522 B
Plaintext
# 版本控制
|
|
.git
|
|
.gitignore
|
|
.gitmodules
|
|
|
|
# 构建目录
|
|
build/
|
|
*/build/
|
|
|
|
# 日志目录
|
|
logs/
|
|
|
|
# macOS 文件
|
|
.DS_Store
|
|
|
|
# IDE 目录
|
|
.vscode/
|
|
.idea/
|
|
|
|
# 临时文件
|
|
*.log
|
|
*.temp
|
|
*.tmp
|
|
*.o
|
|
*.a
|
|
.cache/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# Docker 相关文件
|
|
.dockerignore
|
|
|
|
# Do not ignore .git directory, otherwise the reported build number will always be 0
|
|
.github/
|
|
.vs/
|
|
|
|
models/*
|
|
|
|
/llama-cli
|
|
/llama-quantize
|
|
|
|
arm_neon.h
|
|
compile_commands.json
|
|
Dockerfile
|