1

好吧,我想这个问题很受欢迎,但我只是不明白。我在 GitHub 上创建了一个新的存储库,然后转到我的文件夹,其中有一些代码,我将执行以下步骤:

git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/MyNick/MyCode.git
git push -u origin master

所以我得到:

fatal: 'origin' 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.

我究竟做错了什么?谢谢你。

4

3 回答 3

2

尝试添加ssh回购。

很可能是这样的

git remote add origin git@github.com:MyNick/MyCode.git
git push -u origin master

那应该很好用。

于 2013-05-21T23:34:01.053 回答
1

那么上面的答案应该有效。有疑问时的另一个建议是检查你的 .git/config 文件。它将为您提供您可能需要了解的与子模块/来源/分支相关的大部分详细信息

[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = xxx

[branch "master"]
        remote = origin
        merge = refs/heads/master

[submodule "submodule"]
        url = xxx
于 2013-05-21T23:42:18.900 回答
0

你确定你已经创建了 GitHub 存储库吗?错误消息表明它无法在 GitHub URL 上找到存储库。您可能只是将其作为示例进行了伪造,但是当我尝试访问https://github.com/MyNick/MyCode.git时出现 404 错误。

于 2013-05-22T07:01:43.270 回答