Submodule update: Routine bump

The standard commands to fast-forward blueprints/ to a newer upstream commit.

Updating the Blueprints submodule — Routine bump

What it is

The standard commands to fast-forward blueprints/ to a newer upstream commit.

Parent page: Updating the Blueprints submodule.

When to use it

On a schedule, after upstream fixes, or when you need a feature from autowww/blueprints.

Prerequisites

Steps

From the repository root (parent of blueprints/):

cd blueprints
git fetch origin
git checkout main   # or the branch your org tracks
git pull --ff-only
cd ..
git status
git add blueprints
git commit -m "chore: bump blueprints submodule"

If you use nested submodules inside blueprints/:

git submodule update --init --recursive

What to do next