我使用以下内容克隆存储库:
git clone ssh://xxxxx/xx.git
但在我更改一些文件并添加和提交它们之后,我想将它们推送到服务器:
git add xxx.php
git commit -m "TEST"
git push origin master
但我得到的错误是:
error: src refspec master does not match any.
error: failed to push some refs to 'ssh://xxxxx.com/project.git'
我为一个GitHub存储库做了贡献,所以我分叉了这个项目,克隆了它,创建了自己的分支,进行了一些提交,并尝试推送。
此时,我发现我克隆的不是我的fork,而是原始的项目存储库(我没有权限将其推送到)。
所以我更改了.git/config以将原点指向我的存储库。
此时,当我尝试推送时,我收到了错误消息:src-refspec my_awesome_branch不匹配。
我所要做的就是触摸任何文件并提交它(就像你在这个答案中看到的一样):
git touch README
git commit -m "fixing error in my git repo"
然后:
git checkout master
git pull origin master
git push origin master # This will tell my remote repository about my new branch
git checkout my_awesome_branch
git push origin my_awesome_branch # Now it will work
我也遇到了同样的问题,并且发现我没有提交任何文件,所以当我再次尝试提交时,我收到了以下错误消息:
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'USER@WINDOWS-HE6I2CL.(none)')
然后我所做的就是在全球范围内添加我的电子邮件和姓名,然后再次提交:
git commit -m 'Initial commit'
然后按下
git push -u origin master
我也遵循了GitHub的指示,如下所示,但我仍然面临着OP提到的同样的错误:
git init
git add .
git commit -m "message"
git remote add origin "github.com/your_repo.git"
git push -u origin master
对我来说,我希望这对一些人有所帮助,我在MacOS上推送了一个大文件(1.58 GB磁盘)。在复制粘贴上面建议的代码行时,我并没有等到处理器真正完成添加。过程因此,当我键入gitcommit-m“message”时,它基本上没有引用任何文件,也没有完成将代码成功提交到GitHub所需的任何操作。
证明这一点的是,当我键入gitstatus时,通常会为添加的文件使用绿色字体。但所有的东西都是红色的,好像根本没有添加。
所以我重新调整了步骤。我键入了gitadd。并等待文件完成添加。然后我完成了接下来的步骤。
两种可能性:
1-要么忘记包含.gitignore文件。
以下是所需的所有步骤:
在远程上创建一个空的Git存储库,在本地创建.gitignore文件。GitHub在这里列出了一些示例启动终端,然后在项目中执行以下命令:git remote添加原点YOUR/origin.gitgit添加。gitcommit-m“初始提交或首次提交的任何消息”git push-u原始主机
2-或者您正在尝试创建一个新的Github项目。
Github将master替换为main作为默认分支名称。要解决此问题,请执行以下操作:
在本地项目上:删除.git文件夹(如果存在)通过在项目中启动以下操作,重新创建一个干净的存储库:
在终端中:
git init
git add .
git commit -m "YOUR FIRST MESSAGE HERE"
git branch -M main
git remote add origin _GIT_LINK_TO_PROJECT_HERE_
git push -u origin main
我想这可能会对某人有所帮助。我今天做出了我的第一次重大承诺。我试了很多指南,但总是出错。
首先:将文件cd到目录中初始化git:gitinit提交文件:gitcommit要在有任何模糊的bash命令时强制提交,请单击I插入提交消息要继续:单击Esc
要发送到GitHub存储库,请首先确保已添加用户名和电子邮件:
git config --global user.name 'Your name'
git config --global user.email 'name@mail.com'
继续:
git remote add origin https://github repo url
要推送到存储库:
git push -u origin 'https://github.repo url'
它将提交加载到存储库中。
完成!!!
2020年底,GitHub将其主分支更改为主分支。
我注意到GitHub创建了一个新的分支master,当我使用git push-u origin master时,这不是主分支:
现在,当我尝试使用gitpush-uorigin-main来直接推送到main分支时,会出现以下错误:
我面临这个错误:
src refspec main does not match any
error: failed to push some refs to 'https://github.com/<my_project_name>.git
在我第一次提交到main之后,我使用以下步骤修复了它。在以下代码中更改GitHub的URL:
git branch -M main
git remote add origin https://github.com/Sidrah-Madiha/<my_project_url>.git
git push -u origin main
面临的问题
当我在GitHub上创建一个新的存储库并将其与我的客户端计算机上的react应用程序链接时,我也遇到了同样的问题。
我使用了以下步骤:
出现问题之前使用的命令
git init
git commit -m "first commit"
git branch -M main
git remote add origin "_git repository link here_"
git push -u origin main
我的错误
但正如你所见,我的错误是没有使用gitadd。命令我犯了这个错误,因为我已经有了README.md文件,而GitHub在创建存储库时会指导我们使用基本命令。
我的解决方案
我的解决方案是使用gitadd。gitinit命令之后。
按照相同的顺序使用以下命令集来解决问题:
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin "_git repository link here_"
git push -u origin main