
git相关
云烟上青台
学习的感觉很棒,很充实
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Connection was reset, errno 10054 报错
git config --global --add core.compression -1 git config --global http.postBuffer 524288000 git config http.sslVerify “false” git config --global http.sslBackend “openssl” git config --global http.sslCAInfo [path to .pem file]原创 2022-01-25 11:37:48 · 252 阅读 · 0 评论 -
git push报错: hint:Updates were rejected because the tip of your current branch is behind
##当你和同事共同开发一个git项目 提交自己代码前,先 git pull 提示 From: ...... error:your local changes to the following files would overwritten by merge: 你修改文件的路径 Please commit your changes or stash them before you merge Ab...原创 2020-03-02 15:45:15 · 1304 阅读 · 0 评论 -
git pull报错:Please commit your changes or stash them before you can
git status . git pull // 出现该提示 Please commit your changes or stash them before you can merge. git stash git pull git stash pop git status . git add . git commit -m "" git push 参考来源 : 点我 ...原创 2020-02-14 17:30:39 · 308 阅读 · 0 评论