所以,我正在尝试学习Git的基础知识,但是我在通过Git Bash登录时遇到了问题。我用的是Windows 7。
首先,我在我的Github帐户中创建了一个测试repo,然后我试图从命令行推送它,像这样:
$ git remote add origin https://github.com/martin-dzhonov/Test.git
$ git push -u origin master
然后提示输入用户名和密码,输入后得到
error: src refspec master does not match any.
error: failed to push some refs to https://github.com/martin-dzhonov/Test.git
帮助吗?
原来我是个白痴。我没有改变cmd中的目录,所以我试图推送一个不存在的repo。