
git
文章平均质量分 74
草宝虫
现任某 IT 公司架构师、IT 写作者。精通多门编程语言,主攻 Java 后台开发,十多年项目经验,希望在 IT 领域发挥自己的光辉,给大家做一个启发或者引导。
展开
-
git工作中常用命令
基础克隆代码git clone http://xxx.git克隆代码到b目录git clone http://xxx.git b拉取最新代码git pull分支切换指定(develop)分支git checkout develop创建指定分支feature/whqgit checkout -b feature/whq添加当前目录下所有修改到待提交区(也有称之为暂存区的)git add .提交代码到本地git仓库,标记注释remarkgit commit -m “remark”原创 2022-01-10 13:57:56 · 202 阅读 · 0 评论 -
git 大文件报错Out of memory, malloc failed、 The remote end hung up unexpectedly
git clone出现 "fatal: The remote end hung up unexpectedly"设置git config --global http.postBuffer 104857600000后git clone报错fatal: Out of memory, malloc failed (tried to allocate 1778384896 bytes...原创 2019-03-19 14:02:35 · 1381 阅读 · 0 评论