discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

How often do you git submodule update?

CC
Cory Cross
Mon, Nov 10, 2025 5:00 AM

Subject is the whole question.

Subject is the whole question.
MK
Marius Kintel
Mon, Nov 10, 2025 5:16 AM

[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

[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
JB
Jordan Brown
Mon, Nov 10, 2025 5:36 AM

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.

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>.
JH
Jeffrey Hayes
Mon, Nov 10, 2025 8:12 AM

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:

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: