前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
答案 0 :(得分:0)
“远程原点已经存在”的意思就是这样。您之前已添加了一个遥控器,所以它停留在上一个遥控器上。
“它显示ssh:connect到主机git.com端口22”-这表明您输入了错误并使用了git.com
而不是github.com
。
使用git remote rm origin
删除现有的遥控器,然后尝试添加适当的遥控器并再次按下。