关于往github传代码一些问题

https://blog.csdn.net/hlxx55/article/details/80906418

先是这个教程大致能够完成

其次是碰到error:src refspec master does not match any问题

这个问题的产生是

引起该错误的原因是,目录中没有文件,空目录是不能提交上去的,而且在push之前至少有过一次commit

解决方法是

git init 
touch README
git add README 
git commit -m 'first commit'   #这里要写一下提交注释
git remote add origin https://github.com/xxx.github.io.git
git push origin master

你可能感兴趣的:(关于往github传代码一些问题)