文章分类 - Git
摘要:git 解决 fatal: Out of memory, malloc failed (tried to allocate 524288000 bytes ) 问题 我解决的是: git config http.postBuffer 0 git config --global http.postBu
阅读全文
摘要:总结一下git的使用流程: 什么是git :Git是目前世界上最先进的分布式版本控制系统 工作区:Workspace 暂存区:Index / Stage 本地仓库:(仓库区)Repository 远程仓库:Remote 一:使用git提交代码到版本库的步骤: 第一步:使用 git add 文件名(多
阅读全文
摘要:最近从github上面克隆项目出现超时现象: 解决方案: 1.配置 git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999 增加最低速时间,but,还是不行! 继续修改 2、httpB
阅读全文