chore: Add .gitignore for build artifacts

- Ignore components/, initramfs/, kernel/, dist/ directories
- Ignore build logs and temporary files
- Prevent future accidental commits of build artifacts
This commit is contained in:
2025-08-31 16:23:52 +02:00
parent 7cf0d070ef
commit 6d44575860
4 changed files with 39 additions and 3 deletions

39
.gitignore vendored Normal file
View File

@@ -0,0 +1,39 @@
# Zero OS Alpine Initramfs Builder - Build Artifacts
# Build directories (generated during build)
components/
initramfs/
kernel/
dist/
# Build logs
*.log
build*.log
nohup.out
# Temporary files
/tmp/
*.tmp
# Container artifacts (if any local storage)
.docker/
.podman/
# Rust build artifacts (if any escape component dirs)
target/
Cargo.lock
# Alpine downloads
alpine-miniroot*.tar.gz
linux-*.tar.xz
# Editor and IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
Thumbs.db

Submodule components/mycelium deleted from a9ba23d7bd

Submodule components/rfs deleted from 2b92afaf10

Submodule components/zinit deleted from 92444a7670