error: src refspec master does not match any. error: failed to push some ref

使用git上传项目至github时,发生了这种错误。

error: src refspec master does not match any. error: failed to push some ref

原因分析

引起该错误的原因是,目录中没有文件,空目录是不能提交上去的

解决方法

touch README
git add README 
git commit -m 'first commit'
git push origin master

你可能感兴趣的:(互联网基础积累)