fix: use HTTPS submodule URLs so the repo clones anonymously
The Terms of Service's GPLv3 corresponding-source offer points at this repo; with SSH submodule URLs, `git clone --recursive` fails for anyone without a GitHub account. HTTPS URLs work for everyone (pushes still go over SSH via insteadOf, if configured). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
eababd7ef9
commit
ba3ba37c4d
1 changed files with 3 additions and 3 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
|
@ -1,12 +1,12 @@
|
||||||
[submodule "kicad"]
|
[submodule "kicad"]
|
||||||
path = kicad
|
path = kicad
|
||||||
url = git@github.com:emergence-engineering/kicad-source-mirror.git
|
url = https://github.com/emergence-engineering/kicad-source-mirror.git
|
||||||
branch = wasm-port
|
branch = wasm-port
|
||||||
[submodule "wxwidgets"]
|
[submodule "wxwidgets"]
|
||||||
path = wxwidgets
|
path = wxwidgets
|
||||||
url = git@github.com:emergence-engineering/wxWidgets.git
|
url = https://github.com/emergence-engineering/wxWidgets.git
|
||||||
branch = wasm-port
|
branch = wasm-port
|
||||||
[submodule "web/pcbjam-shared"]
|
[submodule "web/pcbjam-shared"]
|
||||||
path = web/pcbjam-shared
|
path = web/pcbjam-shared
|
||||||
url = git@github.com:emergence-engineering/pcbjam-shared.git
|
url = https://github.com/emergence-engineering/pcbjam-shared.git
|
||||||
branch = main
|
branch = main
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue