拉取代码时 SSL的配置

    git config —global http.sslVerify “false”

    设置内存大小

    git config —global http.postBuffer 524288000

    设置拉取代码时的网速

    git config —global http.lowSpeedLimit 0
    git config —global http.lowSpeedTime 999999

    浅克隆
    使用 git clone --depth=1 http://gitlab.xxx.cn/yyy/zzz.git 克隆部分代码 然后进入代码目录 输入 git fetch --unshallow 进行完整克隆<br />
    三、换协议
    clone http方式换成SSH的方式,即 https:// 改为 git://
    例如git clone [https://github.com/flutter/flutter.git](https://github.com/flutter/flutter.git)
    换成git clone git://github.com/flutter/flutter.git

    git查看提交代码时配置的用户名称:git config user.name
    git修改提交代码时配置的用户名称:git config —global user.name “用户名”