在使用如下命令检出Vulkan
的时候,发生失败,Vulkan
的代码已经成功检出,但是子模块没有完成
1 |
$ git clone --recursive https://github.com/SaschaWillems/Vulkan.git |
提示的出错信息如下:
1 2 3 |
warning: 克隆成功,但是检出失败。 您可以通过 'git status' 检查哪些已被检出,然后使用命令 'git checkout -f HEAD' 重试 |
可以使用如下命令继续检出子模块:
1 |
$ git submodule update --init --recursive --progress |