Pages

Wednesday, February 7, 2018

Git - forgot to use --recursive while cloning

Git - forgot to use --recursive while cloning

While using Git, there are some cases, where we need to do a recursive clone.
But If you forgot to do it, still you can do it in another way.

cd my-just-cloned-repo
git submodule update --init --recursive
 
Solution is mentioned here.
https://stackoverflow.com/questions/33795901/git-forgot-to-use-recursive-while-cloning 

No comments:

Post a Comment