使用git push时出现error: src refspec master does not match any. 是什么原因

错误:error: src refspec mater does not match any.
error: failed to push some refs to '[email protected]:ouyangbeibei/resumer.git'

使用git push时出现error: src refspec master does not match any. 是什么原因_第1张图片
image.png

方法解决:

git add .
git commit -m "new"
git push
使用git push时出现error: src refspec master does not match any. 是什么原因_第2张图片
image.png

push就成功了(it add . 会监控工作区的状态树,使用它会把工作时的所有变化提交到暂存区,包括文件内容修改(modified)以及新文件(new),但不包括被删除的文件.)

你可能感兴趣的:(使用git push时出现error: src refspec master does not match any. 是什么原因)