无法将文件添加到现有的空github存储库

时间:2018-03-15 14:38:16

标签: git github

首先,我在github上创建了一个显然为空的存储库。然后我在我的工作目录中启动了一个git bash终端。一旦我这样做,我就使用以下代码将我的文件推送到github存储库:

git init
git add .
git commit -m "my commit"
git remote set-url origin git@github.com:username/repo.git
git push origin master

当我运行git push origin master时,我收到以下错误:

error: src refspec master does not match any.
error: failed to push some refs to 'git@github.com:/madsthaks/AdTrackingFraudDetection.git'

我对git不太满意,所以我在这方面遇到了一些麻烦。任何帮助将非常感激。

1 个答案:

答案 0 :(得分:0)

尝试

git init
echo. readme>README.md
git add .
git commit -am "Initial Commit"
git remote add origin https://github.com/madsthaks/AdTrackingFraudDetection
git push --set-upstream origin master