这是错误:
.pdb
我跑步后:
➜ leetcodebypython git:(master) git push
ssh: Could not resolve hostname ssh.github.com: nodename nor servname provided, or not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
更改网址的条目
ssh -T git@github.com
git config --local -e
到
git@github.com:username/repo.git
我的Chrome浏览器在加载https://github.com时也发出“不安全”警告
如何管理?
答案 0 :(得分:2)
您的远程git URL不正确; SSH URL的一般格式为:
git@github.com:username/repo.git
,HTTPS URL的一般格式为:
https://github.com/username/repo.git
其中username
是个人或组织,而repo
是您要连接的存储库,例如,如果您的存储库是hello-world
并且GitHub用户名是{{ 1}},那么SSH存储库URL为:
bigbugboy
要开始使用GitHub,如果您login to your GitHub account,使用UI创建新的存储库,从UI获取SSH URL并使用该URL在本地克隆存储库,则可能会更容易。 :
git@github.com:bigbugboy/hello-world.git
当您在存储库URL中使用git协议时,git会处理SSH连接详细信息,因此您不会直接使用ssh;您只使用git。但是在通过SSH将更新推送到GitHub存储库之前,您必须先add your SSH key(s) to your account in GitHub,这是在GitHub帐户设置的“ SSH和GPG密钥”下完成的。