This repository manages a collection of ComfyUI custom nodes using Git submodules.
Each submodule represents a separate custom node repository.
After cloning, the repository will look like:
custom_nodes/
node_a/
node_b/
node_c/
Each folder is a git submodule pointing to an external repository.
Clone with submodules:
git clone --recurse-submodules http://<gitlab-url>/medlabotx/comfyui/custom_nodes.gitIf already cloned:
git submodule update --init --recursiveTo update all nodes to their configured versions:
git pull
git submodule update --init --recursiveTo update submodules to latest remote commits:
git submodule update --remote --recursivegit submodule add http://<gitlab-url>/group/node_repo.git <node_name>
git commit -m "Add new custom node"- This repository only manages references to node repositories.
- Each node may have its own dependencies and installation requirements.
- Intended for use with ComfyUI startup automation systems.