You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Work in a submodule (e.g. server)cd server
git add .
git commit -m "fix: ..."
git push origin main # all repos use main# Update the monorepo pointercd ..
git add server
git commit -m "chore: bump server"
git push origin main
# Pull latest from all submodules
git submodule update --remote --merge