git报错,文件过大
报错信息
Cloning into 'st-caweb'...
remote: Counting objects: 2652, done.
remote: Compressing objects: 100% (1414/1414), done.
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
解决
git clone https://github.com/flutter/flutter.git --depth 1
参考链接
拉取远程代码后冲突解决
git status
git add .
git commit -m "提交代码"
git pull //发现代码冲突
//本地修改冲突后,运行一下没有问题后
git add .
git commit -m "代码合并"
git pull //没问题后
git push //推送远程