
git
Timor__
只想在平庸的生活中拥抱你
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git上传代码 出现错误fatal: unable to access ‘’: OpenSSL SSL_read: Con
git push时出现以下错误fatal: unable to access ‘https://github.com/ClowLAY/spring-cloud-config.git/’: OpenSSL SSL_read: Connection was aborted, errno 10053错误原因:主要是无法连接远程地址解决办法修改远程地址,我原来使用的是https代理的远程仓库地址,最直接的办法就是把https代理模式修改成git方式的主要步骤如下:#删除原来远程仓库(origin表示远原创 2021-11-03 21:09:03 · 2148 阅读 · 0 评论 -
IDEA 修改远程仓库地址
只有简单的几个步骤:1、删除现有的远程仓库地址 (备注仓库名称一般默认是origin,可根据实际情况修改)git remote rm origin 2、重新添加远程仓库地址(仓库名称默认origin,可根据实际情况修改)git remote add origin 远程仓库地址3、查看远程仓库地址git remote -v如果帮助到了你,可以点一个赞吗?谢谢各位了...原创 2020-04-29 17:51:15 · 1589 阅读 · 1 评论 -
IDEA 上传项目至Github或者GitLab
上传项目步骤:1、git init 初始化2、 git add . 初步提交3、git commit -m 备注信息5、git remote add origin 远程仓库地址 建立远程仓库的连接6、git push -u origin master 推送到远程仓库...原创 2020-04-29 17:44:19 · 326 阅读 · 0 评论