好吧,我猜这个问题很受欢迎,但我只是明白了。我在GitHub上创建了一个新的repo,然后我转到我的文件夹,在那里我有一些代码我接下来的步骤:
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.
我做错了什么?谢谢。
答案 0 :(得分:2)
尝试添加ssh
回购。
很有可能是
git remote add origin git@github.com:MyNick/MyCode.git
git push -u origin master
这应该运作良好。
答案 1 :(得分: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
答案 2 :(得分:0)
您确定已创建GitHub存储库吗?该错误消息表明它无法在GitHub URL上找到repo。您可能只是假装它作为示例,但当我尝试访问https://github.com/MyNick/MyCode.git时出现404错误。