Closed iamsidharthbnair closed 4 years ago
You've missed --recurse-submodules
flag in git clone
, which is already documented.
git submodule update --init
to resolve this
cloned using.... git clone --recurse-submodules https://github.com/ChiChou/Grapefruit
also did run git submodule update --init
but receiving this error: fatal: not a git repository (or any of the parent directories): .git
You are running the command in a wrong directory. git submodule update --init
needs to be used in the root directory of your local Grapefruit copy, and that's all you need to fix the problem.
git clone --recurse-submodules https://github.com/ChiChou/Grapefruit.git
means re-cloning the whole repo again from the scrach.
Either way will do it for you.
You need to learn more about git: https://git-scm.com/docs/gittutorial
And please do not open duplicate issues for the same question. Use reopen if you think it's not resolved. Thanks
Here is the Discord channel of the project. You may get quicker response here
Thanks for the quick response and Knowledge transfer appreciate it, Thanks alot :)