git 将 md 文件推送到 Github 时出现致命错误

git fatal error when pushing md file to Github

这让我发疯。我 运行 git mac osx 10.10.3

我在尝试将 MD 文件上传到 github 时不断收到 "does not appear to be a git repository" 消息,这是我收到的消息:

git push origin master 致命的:'github.com/bbenavides/datasciencecoursera.git' 似乎不是 git 存储库 致命:无法从远程存储库读取。 请确保您拥有正确的访问权限 并且存储库存在。

感谢任何帮助。

The repository in question

您的遥控器似乎配置不正确。您可以使用

查看您配置的遥控器
git remote -v

GitHub 遥控器通常看起来像

  • git@github.com:user/repo.git 用于 SSH 连接(注意 git@:),或
  • https://github.com/user/repo.git(注意 https://)用于 HTTP 连接

您的遥控器似乎是没有协议部分的 HTTP 遥控器。

要更新您的遥控器(假设它的名称是 origin;您可以在之前的 git remote -v 的输出中看到它):

git remote set-url origin https://github.com/bbenavides/datasciencecoursera.git
git remote set-url --push origin https://github.com/bbenavides/datasciencecoursera.git

通常最好直接从 GitHub 复制 URL,这有助于防止出现此类拼写错误。