项目太大git clone 不下来可以试试如下方式:
先看git版本是否太低
配置git的最低速度和最低速度时间
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 9999999
增加缓存500M  若不够可自行再加
git config http.postBuffer 524288000     
如上修改若还是clone 不成 再试如下方法
clone先浅克隆
git clone --depth=1 URl
修改.git/config文件中的
fetch = +refs/heads/master:refs/remotes/origin/master
fetch = +refs/heads/*:refs/remotes/origin/*
然后执行
git fetch --all