Git_错误_02_error: src refspec master does not match 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 [email protected]:shirayner/WeiXin_QiYe_Demo.git

时间: 2024-10-05 15:13:12

Git_错误_02_error: src refspec master does not match any的相关文章

Git:错误:error:src refspec master does not match any

新建立了一个远程仓库,想着把项目放上去.于是在项目目录上: git init 然后就添加远程库 git remote add origin xxxx.git 然后就想push: git push -u origin master 结果提示错误: error:src refspec master does not match any 百度下,原来是说我本地没有提交任何东西,本地版本库为空, 空目录不能提交 (只进行了init, 没有add和commit). 解决: 添加:git add -A 提交

本地Git仓库和远程仓库的创建和关联及github上传(git push)时出现error: src refspec master does not match any解决办法

github上传项目方法: 在你的电脑上装好git Git Bash Here 本地Git仓库和远程仓库的创建及关联大致流程是: 1.初始化这个本地的文件夹为一个Git可以管理的仓库 git init 注意:Git会自动为我们创建唯一一个master分支我们能够发现在当前目录下多了一个.git的目录,这个目录是Git来跟踪管理版本库的,千万不要手动修改这个目录里面的文件,不然改乱了,就把Git仓库给破坏了. 2.将本地的仓库和远程的仓库进行关联 git remote add origin [em

error: src refspec master does not match any.

执行下面的命令,git push 时候出错: git push origin master 出现如下错误: error: src refspec master does not match any. error: failed to push some refs to '[email protected]:********' 原因: 本地仓库为空 解决办法: git add somefile git commit -m "comment" 原文地址:https://www.cnblog

解决:github上传时出现error: src refspec master does not match any

原因分析 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 解决方法 touch README git add README git commit -m 'first commit' git push origin master

【github问题】error: src refspec master does not match any解决方法|please tell me who you are

http://www.open-open.com/lib/view/open1366080269265.html这个先记录一下省得以后再找 我这里要解决的问题根本是:please tell me who you are.出现问题原因:在本地创建了一个文件后,在github上创建了另一个,我需要将他们连接起来, git remote add origin '地址',这里会出现问题,使用下面2,3步解决,不是使用clone下来的需要add origin地址进行连接 1git init2.git co

git push -u origin master报错src refspec master does

git push -u origin master 时候报错 src refspec master does not match any. 因为[email protected]上面没有版本分支master,首先要去到目标目录,随便git add一个文件,然后git commit -m "msg".提交到了( 在commit之前要 git config --global user.name "forai" git config --global user.email

使用 Git 报错 error: src refspec master matches more than one.

今天在使用 Git push 代码时遇到一个报错: error: src refspec master matches more than one. error: failed to push some refs to '[email protected]:yn/enh.git' 出现这个错误是因为有一个与当前提交分支同名的标签 查看标签列表: git tag 删除这个标签: git tag -d <tag-name> 再次 push 就 ok 了

error: src refspec test does not match any.

我在本地创建了新分支test并提交到github上 错误信息如下: error: src refspec test does not match any. error: failed to push some refs to 'https://github.com/itbsl/admin.git' 错误的原因是远程并没有test分支,我们需要将在本地创建分支的信息推送到github上 git push origin HEAD -u 可以到github看一下 原文地址:https://www.cn

git报错error: src refspec refs/heads/master does not match any.

$ git pusherror: src refspec refs/heads/master does not match any.error: failed to push some refs 出错解决方案: 首先先试试注释 1.本地git仓库目录下为空 2.本地仓库add后未commit 3.git init错误 解决: 1.控制面板打开文件夹选项  打开隐藏文件和文件夹显示 2.到本地仓库目录下查看是否有.git文件夹--无 则git init 3.看.git文件夹下是否有之前提交的文件-