Fatal Error when updating submodule using GIT

后端 未结 8 961
庸人自扰
庸人自扰 2021-01-30 08:45

I am trying to update the submodules of this git repositary but I keep getting a fatal errors:

[root@iptlock ProdigyView]# git submodule update --recursive
Cloni         


        
8条回答
  •  一生所求
    2021-01-30 09:19

    The following steps will fix the problem.

    1. Delete the folder of the submodule on your local.
    2. Do git submodule sync
    3. then git submodule update --init

    Hope this helps.

提交回复
热议问题