git clone中断怎么办

git clone https://xxxxxxx因网络等原因中断后,如何继续下载?

1)方法一
保持git clone时的原目录不变,运行以下命令进行clone

$ git clone --recursive https:xxxxxx

  1. 方法二
    进入项目根目录,继续下载

$ cd [项目根目录]

$ git submodule update --init --recursive

你可能感兴趣的:(git clone中断怎么办)