1

我第一次尝试将文件从本地计算机上传到 github。

在尝试上传它们时,我得到了错误

error: src refspec master does not match any.
error: failed to push some refs to 'https://github.com/name/file.git'

我在 stackoverflow 上查看了类似的问题,发现这个问题我认为已经回答了我的问题。我添加了

git remote rm origin
git remote add origin https://github.com:name/file.git

什么也没发生,我还需要添加什么?

===编辑===

进一步查看后,我发现

git commit -m 'my message' 会做到的

这返回了消息

5 files changed, 162 insertions(+)

在进入我的存储库时,没有添加任何内容

4

2 回答 2

0

You can not push unless you commit anything first.

You did commit. Nothing has changed - it was committed, but files stayed the same. You can push now.

于 2013-08-15T09:20:08.583 回答
0

请参阅“为什么我需要显式推送新分支? ”:

一次推送到 GitHub 需要:

git push -u origin master

然后,在进行其他提交之后,您将能够简单地“ git push”那些(不需要参数:本地 master 分支知道在哪里推送)

于 2013-08-15T09:51:19.250 回答