- Remove bootc git submodule (user doesn't want it) - Update .gitignore to ignore bootc/ directory - Remove .gitmodules file - Documentation is self-contained without source code dependency
23 lines
No EOL
278 B
Text
23 lines
No EOL
278 B
Text
# 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/
|
|
|
|
# Ignore bootc source code directory
|
|
bootc/ |