105 lines
1.3 KiB
Plaintext
105 lines
1.3 KiB
Plaintext
# Blender Portable Git Management - .gitignore
|
|
|
|
# Blender auto-save files
|
|
*.blend1
|
|
*.blend2
|
|
*.blend3
|
|
*.blend4
|
|
*.blend5
|
|
*.blend6
|
|
*.blend7
|
|
*.blend8
|
|
*.blend9
|
|
*.blend10
|
|
*.blend11
|
|
*.blend12
|
|
*.blend13
|
|
*.blend14
|
|
*.blend15
|
|
*.blend16
|
|
*.blend17
|
|
*.blend18
|
|
*.blend19
|
|
*.blend20
|
|
*.blend21
|
|
*.blend22
|
|
*.blend23
|
|
*.blend24
|
|
*.blend25
|
|
*.blend26
|
|
*.blend27
|
|
*.blend28
|
|
*.blend29
|
|
*.blend30
|
|
*.blend31
|
|
*.blend32
|
|
|
|
# Blender cache and temporary files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.tmp
|
|
*.temp
|
|
BL_proxy/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.specstory/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Node modules (if using any web tools)
|
|
node_modules/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Temporary files
|
|
temp/
|
|
tmp/
|
|
cache/
|
|
|
|
# Updater staging/source directories (auto-downloaded)
|
|
*_updater/source/
|
|
*_updater/update_staging/
|
|
*_updater/backup/
|
|
|
|
# Nested git repositories (add manually as submodules if needed)
|
|
**/.git/
|
|
|
|
# Blender portable specific
|
|
# These are typically generated or downloaded at runtime
|
|
*.log
|
|
|
|
# Extension platform cache and local Python installs (rebuilt by Blender/extensions)
|
|
extensions/.cache/
|
|
extensions/.local/
|