在我提出这个问题之前,我已经搜索并尝试了各种解决方案,但显然它不起作用。这可能是Mac Air的常见问题:
问题在于,当我尝试为git建立新的repo并输入:
git remote add origin https://githup.com/username/reponame.git
git push -u origin master
我收到了这个错误:
fatal : unable to access 'https://githup.com/....': failed to connect to githup.com443; Operation timed out.
如果我像这样使用git:
git remote add origin git@githup.com:username/repo.git
git push -u origin master
我得到了这些:
ssh: connect to host githup.com port 22: Operation timed out
fatal: Could not read from remote repository.
我开始怀疑Mac Air的ssh
服务可能无法使用。
任何有用的解决方案?
非常感谢提前!!!