git
文章平均质量分 79
蓝鲸是鱼
这个作者很懒,什么都没留下…
展开
-
VScode的git安装与配置
git下载与安装1、在官网下载git的最新版本2、按照提示一步步安装完成,具体步骤参看以下文章:转https://blog.csdn.net/qq_40342589/article/details/105676715VScode配置1、由于VScode默认git路径是C:/,所以需要更改路径2、在【文件】-【首选项】-【设置】中搜索 “git.path”3、点击 “在setting.json中编辑” ,改为{“git.path”: “你的安装路径/Git/bin/git.exe”,“te原创 2021-03-01 21:25:41 · 9251 阅读 · 0 评论 -
git遇到的问题
git遇到的问题1、remote rejected pre-receive hook declined文件过大推送失败,影响其他文件删除大文件2、fatal: The remote end hung up unexpectedly那就简单了,要么是缓存不够,要么是网络不行,要么墙的原因git config --global http.postBuffer 1048576000转载https://blog.csdn.net/weixin_38450840/article/details/8070原创 2020-08-23 23:51:15 · 144 阅读 · 0 评论