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:
parent
526f1c1afd
commit
cea1a07a43
1 changed files with 22 additions and 0 deletions
22
.gitignore
vendored
Normal file
22
.gitignore
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue