如何在github中设置和发布第一个推送?

时间:2017-06-13 16:50:51

标签: git github git-push

我的客户端使用推送权限将我添加到Github的私有存储库中。我尝试进行第一次提交,然后按照this指南设置我的第一次提交。但是在推送我的提交时我发现了错误。

我的工作是:

git init
git add .
git commit -m "First commit"
git remote add origin remote https://github.com/username/rep.git
git remote -v
git push origin master

一切都很顺利,但最后一行给了我以下错误。

C:\wamp64\www\res>git push origin master
remote: Repository not found.
fatal: repository 'https://github.com/username/rep.git/' not found

1 个答案:

答案 0 :(得分:2)

错误消息非常明确:https://github.com/username/rep.git/

没有存储库

看起来您的客户端没有创建存储库。也许他们只是邀请你进入他们的私人组织? 无论哪种方式,都需要在Github界面中创建存储库,然后再推送它。

另请注意,添加遥控器的命令应为:

git remote add origin https://github.com/username/rep.git