码迷,mamicode.com
首页 > 其他好文 > 详细

Git_错误_02_error: src refspec master does not match any

时间:2017-09-10 22:13:53      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:commit   不能   git push   src   github   comm   demo   mat   any   

现象:在一个目录下初始化仓库之后,就开始push到github,结果出现了这个错误。

 

错因:初始化仓库之后,并没有使用git add,git commit 命令将文件添加到git仓库中,所以仓库为空,而空的仓库是不能提交到github的。

 

解决方案:

(1)使用命令 ,一次性添加所有文件到暂存区

git  add .

(2)使用命令,将暂存区的文件提交到本地仓库中。

git  commit  -m" 第一次提交"

(3)使用命令,将本地仓库中的文件提交到远程仓库中

 git push -u  ray_qiyeweixin  master

 

远程仓库ray_qiyeweixin的创建命令为:

git remote add ray_qiyeweixin git@github.com:shirayner/WeiXin_QiYe_Demo.git

 

Git_错误_02_error: src refspec master does not match any

标签:commit   不能   git push   src   github   comm   demo   mat   any   

原文地址:http://www.cnblogs.com/shirui/p/7502532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!