error:src refspec master does not match any
引起该错误的原因是,目录中没有文件,空目录是不能提交上去的,而且在push之前至少有过一次commit
git init
git touch READMEgit
git add README
git commit -m 'first commit'
git remote add origin https://github.com/xxx(填入你自己的github地址).github.io.git
git push origin master