Git cannot clone submodule drjit #1210
-
Hi, I'm using Linux and try to git clone the repository: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @yangocean-sudo, The git clone --recursive https://github.com/mitsuba-renderer/mitsuba3 --branch v3.5.2 Or, keeping your existing clone, something like (untested): cd mitsuba3
git checkout v3.5.2
git submodule sync
git submodule update --init --recursive |
Beta Was this translation helpful? Give feedback.
Hello @yangocean-sudo,
The
master
branch is undergoing a lot of development at the moment and can be unstable. I would recommend checking out the last tagged version and trying to pull again:Or, keeping your existing clone, something like (untested):
cd mitsuba3 git checkout v3.5.2 git submodule sync git submodule update --init --recursive