
Git
瓶子的罐子
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git 提示fatal: remote origin already exists 解决办法
使用git的时候发现这样的错误 解决办法如下: 1、先删除远程 Git 仓 $ git remote rm origin 2、再添加远程 Git 仓库 $ git remote add origin 仓库地址 如果执行 git remote rm origin 依然报错,可以手动修改gitconfig文件的内容 $ vi .git/config原创 2016-09-08 17:26:43 · 14579 阅读 · 0 评论 -
使用ssh方式git clone远程版本库遇到的坑(一)
在git clone ssh://….的时候报错:nable to negotiate with : no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 fatal: Could not read from remote repository.解决办法:我在~/.ssh/config文件里添原创 2017-03-08 11:20:18 · 5335 阅读 · 0 评论