我正在学习 ruby.railstutorial.org 课程(第 3 章),我需要创建一个新的 github 帐户。所以我正常启动。
$ git init
$ git commit -m "first commit"
$ git remote add origin git@github.com:<username>/sample_app.git
fatal: remote origin already exists.
这很好,因为它只是告诉我为此设置了一个 github。这是真的,我可以在我的截图中看到。
根据 github 和我的教程,下一步将是:
$ git push -u origin master
fatal: 'git@github.com<username>/sample_app.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
这可能是什么原因造成的?我没有被提示输入密码,我也觉得很奇怪。