我想将我的项目发送到名为luna.git的github存储库:
我按照说明操作 echo“#lun”>> README.md git init git add README.md git commit -m“first commit” git remote add origin https://github.com/raouiyounes/luna.git git push -u origin master
但是我收到了这个错误
error: src refspec master does not match any.
error: impossible de pousser des références vers ‘https://github.com/raouiyounes/luna.git’
答案 0 :(得分:0)
也许你只需要提交。
试试这个:
git add .
git commit -m "initial commit"
git push origin master
答案 1 :(得分:0)
你可以这样做:
git push origin HEAD:branch-name