Update .gitignore: Remove bootc/ ignore since it's a submodule

- Remove ./bootc/ from .gitignore since bootc is now a git submodule
- Add standard ignore patterns for temporary files, editor files, OS files
- Add note explaining that bootc/ is a submodule, not ignored
This commit is contained in:
robojerk 2025-09-15 14:04:06 -07:00
parent 526f1c1afd
commit cea1a07a43

22
.gitignore vendored Normal file
View file

@ -0,0 +1,22 @@
# Ignore temporary files and build artifacts
*.tmp
*.log
*.swp
*.swo
*~
# Ignore editor-specific files
.vscode/
.idea/
*.sublime-*
# Ignore OS-specific files
.DS_Store
Thumbs.db
# Ignore build artifacts if any
target/
dist/
build/
# Note: bootc/ is a git submodule, not ignored