How do I manage conflicts with git submodules?

前端 未结 8 1059
死守一世寂寞
死守一世寂寞 2020-11-30 20:29

I have a git superproject that references several submodules and I am trying to lock down a workflow for the rest of the my project members to work within.

For this

8条回答
  •  遥遥无期
    2020-11-30 20:29

    If you want to use the upstream version:

    rm -rf 
    git submodule init
    git submodule update
    

提交回复
热议问题