随笔分类 - git
摘要:git拉取失败:curl 18 transfer closed with outstanding read data remaining错的解决方案 具体解决方案如下: 1. 一种是增大缓存区: git config --global http.postBuffer 2097152000 2. 二是
阅读全文
摘要:您有一个空存储库 要开始,您需要在终端中运行这些命令。 首次配置 Git git config --global user.name "xxx(10032106)" git config --global user.email "zhaopp-a@glodon.com" 与存储库一起工作 我只想克隆
阅读全文
摘要:1. 撤销 gti commit -m "描述" 问题:修改文件过多的话 push 会失败,严重会影响 git 服务挂掉。 解决: 1. git reset --soft HEAD^ 不会丢弃文件,只会还原到 git commit -m “” 之前
阅读全文