Subject is the whole question.
[alias]
sub = submodule update --init --recursive
..and do it on every checkout.
-Marius
On Nov 10, 2025, at 00:00, Cory Cross via Discuss discuss@lists.openscad.org wrote:
Subject is the whole question.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
On initial clone, of course, and then every time I pull.
$ cat ~/bin/pull
#! /bin/bash
git pull upstream master
git submodule update --recursive
My small pile of tools, mostly for working on OpenSCAD, are on GitHub
https://github.com/jordanbrown0/tools. Particularly relevant here are
pull https://github.com/jordanbrown0/tools/blob/main/pull and osclone
https://github.com/jordanbrown0/tools/blob/main/osclone.
is it to be initializing every time? with the --init i mean. or is that doing something different? -- jeff is vulcan_ in the cloud On Nov. 10, 2025, at 6:37 a.m., Jordan Brown via Discuss discuss@lists.openscad.org wrote: