From cea1a07a4321d08dcf67b6ea998f580962d31480 Mon Sep 17 00:00:00 2001 From: robojerk Date: Mon, 15 Sep 2025 14:04:06 -0700 Subject: [PATCH] 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 --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a456a6f --- /dev/null +++ b/.gitignore @@ -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