我快绝望了。我是GIT的初学者。我正试图通过GitHub指南创建一个新的存储库:
echo "<MY_TAG>" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin <MY_SSH>
git push -u origin main
不知什么原因,在写了&;git push -u origin main&;之后,什么也没发生。一段时间后,它停止并显示一个错误:
ssh: connect to host github.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.
我不知道为什么。我几个小时前也做了同样的事情,没有任何问题。
您也可以切换到HTTPS URL进行测试,看看问题是否仍然存在。
cd /path/to/repo
git remote set-url origin https://github.com/<me>/<myRepo>
git push -u origin main
首先确保github.com
是可达的(无论协议是什么)