git clone https://xxxxxxx因網(wǎng)絡(luò)等原因中斷后,如何繼續(xù)下載?
1)方法一
保持git clone時(shí)的原目錄不變,運(yùn)行以下命令進(jìn)行clone
$ git clone --recursive https:xxxxxx
- 方法二
進(jìn)入項(xiàng)目根目錄,繼續(xù)下載
$ cd [項(xiàng)目根目錄](méi)
$ git submodule update --init --recursive
git clone https://xxxxxxx因網(wǎng)絡(luò)等原因中斷后,如何繼續(xù)下載?
1)方法一
保持git clone時(shí)的原目錄不變,運(yùn)行以下命令進(jìn)行clone
$ git clone --recursive https:xxxxxx
$ cd [項(xiàng)目根目錄](méi)
$ git submodule update --init --recursive