From 117f06c055fca6d34179ee1b96a3dda7ee12aedb Mon Sep 17 00:00:00 2001 From: Travis Herbranson Date: Wed, 20 May 2026 07:21:55 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20correct=20"gitignored"=20wording=20?= =?UTF-8?q?=E2=80=94=20repo=20has=20no=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit README + CLAUDE.md previously claimed Hunyuan3D-2/ and docker/outputs/ were "gitignored". The repo has no .gitignore at all; those paths are just untracked. Use "untracked" / "not committed" wording instead so the operator contract (clone upstream, don't add) is clear without implying a gitignore safety net. Co-Authored-By: Claude Opus 4.7 (1M context) --- CLAUDE.md | 4 ++-- README.md | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 9f785da..b23dbff 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -19,7 +19,7 @@ hunyuan3d-sunnie/ docker/ Dockerfile # community-derived (per repo issues #125, #122) compose.yml # GPU compose; pins the mini-turbo model + flashvdm - outputs/ # generated .glb meshes land here (gitignored) + outputs/ # generated .glb meshes land here (untracked) README.md CLAUDE.md ``` @@ -76,7 +76,7 @@ the re-download. `./docker/outputs/` is bind-mounted into the container at `/workspace/outputs/`. The Gradio app drops `.glb` files there with PBR textures embedded — ready for Blender import → Mixamo rigging. -The dir is gitignored; nothing in it is meant to be committed. +The dir is untracked; nothing in it is meant to be committed. ## Don't-touch zones diff --git a/README.md b/README.md index 7c96964..97c5482 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ Mixamo. ```bash # Clone the upstream model repo into this directory (not a submodule — -# the Dockerfile COPYs it via the build context). This dir is gitignored. +# the Dockerfile COPYs it via the build context). Operator-managed; not +# committed. git clone https://github.com/Tencent-Hunyuan/Hunyuan3D-2.git # Build and run @@ -30,11 +31,11 @@ docker compose up ``` hunyuan3d-sunnie/ - Hunyuan3D-2/ # cloned upstream — gitignored, operator-managed + Hunyuan3D-2/ # cloned upstream — operator-managed, not committed docker/ Dockerfile # custom build, CUDA 12.4, community-derived compose.yml # GPU compose; pins mini-turbo + flashvdm + low_vram - outputs/ # generated .glb meshes land here (gitignored) + outputs/ # generated .glb meshes land here (not committed) ``` ## Notes