将代码推送到github公共驱动器时出错

时间:2018-06-09 17:54:55

标签: git github github-for-mac

我是github的新手并尝试创建我的第一个存储库。执行以下命令后:

$ git push -u origin master

我收到以下错误:

error: src refspec master does not match any.
error: failed to push some refs to 'https://github.com/rs/python-gtts.git

我做的很少,

在我的本地创建了一个文件夹:/Users/TrainingLearning/github/Python

执行以下命令之后:

echo "# python-gtts" >> README.md
git init
git add README.md

然后将我的代码(Python文件 - TextToSpeech.py)添加到我之前创建README.md文件的同一文件夹中:/Users/TrainingLearning/github/Python

尝试着:

$ git add .
$ git commit -m "first commit"
$ git remote add origin https://github.com/rs/python-gtts.git

但是当我执行以下命令时:

$ git push -u origin master

我开始收到以下错误:

error: src refspec master does not match any.
error: failed to push some refs to 'https://github.com/rs/python-gtts.git'

1 个答案:

答案 0 :(得分:0)

我发现了问题,我的git配置不正确,所以我不得不运行以下命令:

$ git config --global user.email" xxxx.xxxx@xxxxx.com" $ git config --global user.name" xxxx"

在此之后,我成功地通过运行以下命令将我的代码推送到git中:

$ git commit -m" Initial Commit" $ git push -u origin master