Closed gvanem closed 2 years ago
Well you have to put a full URL AFAIK when you clone a submodule, and since I'm always using only SSH (because I also push not just pull and I don't want to mess with password agents and other crap), that's what you get. You can teach your git to always clone everything via https though with a rewrite rule.
Btw you only need the submodules if you want to rebuild the binaries.
Wait, I was wrong, looks like you can use relative URLs after all. I'll change and test.
Yup it works, but do git checkout dev
before cloning the submodules.
So my steps would be:
md Git-latest
cd Git-latest
git clone -j8 https://github.com/allegory-software/allegory-sdk.git .
git checkout dev
git submodule update --init --recursive
This works.
Cloning this project on Windows with Git-2 is impossible for me (
git version 2.35.0.windows.1
):The last command yields these errors:
The
publickey
could be a hint. But I fail to grasp what exactly; missing ssh key? Similar to this: https://github.com/kujason/avod/issues/8After patching
.git/config
intohttps://github.com/allegory-software..
agit submodule update --init --recursive
worked. But agit pull
failed (!)So why can't we clone with
https://
? Always works here.