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

Error while pushing code to github public drive

我是 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'

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

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

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

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