git push推送出现问题

2022/4/13 6:18:58

本文主要是介绍git push推送出现问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

由于自己的一系列错误操作,在推送的时候出现以下问题
202204122346502022-04-12

简单检查了,发现已在github保存公钥,基本的git设置也都进行了。
之后发现git-agent未开启(一般在windows上不建议使用git-agent具体见这里,但笔者是按github doc来配置索性就使用了)
202204122354082022-04-12

之后使用ssh-add将把专用密钥添加到ssh-agent的高速缓存中
202204122357292022-04-12
出现问题,无法连接到git-agent
解决方法:需要ssh-agent启动bash,或者说把bash挂到ssh-agent下面。

ssh-agent bash --login -i

具体原因可以见这里。之后就可完成添加了。

之后进行测试12022-04-13

之后如果遇到

$ git remote add origin git@github.com:lut/EvolutionApp.git
fatal: remote origin already exists.

$ git push -u origin master
fatal: 'EvolutionApp' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

可以参看这里



这篇关于git push推送出现问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程