当我第一次从命令行推送现有存储库时

时间:2018-08-13 06:42:45

标签: git github

git remote add origin git@github.com:username/learngit.git个显示remote origin already exists 然后git push -u origin master显示

ssh:connect to host git.com port 22:Connection timed out
fatal:Could not read from remote repository
Please make sure you have the correct access rights and the repository exists

1 个答案:

答案 0 :(得分:0)

“远程原点已经存在”的意思就是这样。您之前已添加了一个遥控器,所以它停留在上一个遥控器上。

“它显示ssh:connect到主机git.com端口22”-这表明您输入了错误并使用了git.com而不是github.com

使用git remote rm origin删除现有的遥控器,然后尝试添加适当的遥控器并再次按下。