Pull git submodules after cloning project from GitHub

前端 未结 3 527
我在风中等你
我在风中等你 2021-01-30 08:10

I have a project that has specified submodules in it. Everything works well on the dev machine. I have commited .gitmodules file and pulled on the production. Howev

3条回答
  •  清歌不尽
    2021-01-30 08:28

    If there are nested submodules, you will need to use:

    git submodule update --init --recursive
    

提交回复
热议问题