【Github】hint: Updates were rejected because the remote contains work that you do && remote: error: G

这篇具有很好参考价值的文章主要介绍了【Github】hint: Updates were rejected because the remote contains work that you do && remote: error: G。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Q:git push报错

hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., ‘git pull …’) before pushing again.
hint: See the ‘Note about fast-forwards’ in ‘git push --help’ for details.

翻译

提示:更新被拒绝,因为远程包含您所做的工作
提示:不要在本地使用。这通常是由另一个存储库推送引起的
提示:对于相同的ref。您可能需要首先集成远程更改
提示:(例如,“git pull…”)然后再次按下
提示:有关详细信息,请参阅“git推送-帮助”中的“关于快进的说明”

A:这是因为在上传的时候,远程仓库中有着本地仓库没有的文件(与远程仓库的内容不一致),即导致本地仓库和远程有不同的开始点,也就是两个仓库没有共同的 commit ,所以无法提交,解决方法如下:

1. git pull origin main --allow-unrelated-histories

2.git pull origin main

3.git init		

4.git remote add origin ssh://git@github.com:Hahalim2022y/slam_test.git

5.git add .		

6.git commit -m "test"

7.git push -u origin main

参考教程https://www.cnblogs.com/yanhuidj/p/9301328.html

正确的提交过程如下:

git init                           //初始化仓库
git add .(文件name)                //添加文件到本地 
git commit -m "first commit"      //添加文件描述信息
git remote add origin  远程仓库地址 //链接远程仓库 
git pull origin master           // 把本地仓库的变化连接到远程仓库master/main分支
git push -u origin master        //把本地仓库的文件推送到远程仓库master/main分支

Q:git push 超过100M资源时,提示remote: error: GH001: Large files detected. GitHub’s file size limit of 100M
A:下载Git-LFS,并安装,cmd进入安装后的目录,执行·git lfs install
hint: updates were rejected because the remote contains work that you do hin,GitHub,github,git
hint: updates were rejected because the remote contains work that you do hin,GitHub,github,git文章来源地址https://www.toymoban.com/news/detail-771233.html

//选择需要提交到Git-LFS的文件
git lfs track "文件"

//跟踪.gittattributes
git add .gitattributes

//下面操作跟Git操作一样
git add cmder-tool.zip
git commit -m "commit"
git push -u origin master

到了这里,关于【Github】hint: Updates were rejected because the remote contains work that you do && remote: error: G的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Updates were rejected because the tip of your current branch is behind

    解决Updates were rejected because the tip of your current branch is behind its remote counterpart问题 Git错误提示Integrate the remote changes…的解决方法 Git在push推送时,报错提示信息如下: 原因分析: 是由于本地和远程仓库两者代码文件不同步,因此需要先pull,进行合并然后再进行push 解决方法:

    2024年02月02日
    浏览(44)
  • git报错:Updates were rejected because the tip of your current branch is behind

    多人协作项目,其他成员提交之后,你这边没有拉取最近代码就要进行推送,远程仓库和本地仓库不同步。 一般远程仓库和本地仓库是同步的,当有另一个人克隆远程仓库并修改推送代码后,你这边的本地仓库再进行推送会提示这个错误。“更新被拒绝,因为您当前分支的提

    2024年02月15日
    浏览(62)
  • 从git提交出现“updates were rejected because a pushed branch tip is behind its remote”到提交成功解决问题的过程

    这里是不断发芽的山有木兮,希望这个帖子可以帮到你! git提交出现“updates were rejected because a pushed branch tip is behind its remote” git报错如下:

    2024年02月02日
    浏览(47)
  • git 提交出现 Updates were rejected 解决方案记录

    git remote add 添加一个远程地址 但提交出现以下报错 VBNET 复制 全屏 解决 也就是说,如果您确定处于分离状态的master版本是您真正想要保留的版本,那么您可以通过强制将分支推送到远程来避免非快进错误: git push origin HEAD:master --force 但是,如果强制推送,则可能会给签出该

    2024年02月07日
    浏览(42)
  • FileUploadException: the request was rejected because no multipart boundary was found

    前端使用 form 提交文件到后端。 使用 jquery/axios/fetch 或其他HTTP客户端程序发送HTTP请求,但是后端(Spring框架)报错如下: 我是因为设置了 \\\"Content-Type\\\": \\\"multipart/form-data\\\" 这样的头,才会失败。 这个请求头的格式样例(见https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type):

    2024年02月10日
    浏览(53)
  • fileupload.FileUploadException: the request was rejected because no multipart boundary was found

    前端小程序调用服务端的文件上传接口,有一台安卓机上传一直报错: 报错日志: {\\\"statusCode\\\": 500, \\\"header\\\": {\\\"Date\\\": \\\"Wed, 29 Mar 2023 06:45:39 GMT\\\", \\\"Content-Language\\\": \\\"en\\\", \\\"Server\\\": \\\"nginx\\\", \\\"Content-Type\\\": \\\"text/html;charset=utf-8\\\", \\\"Transfer-Encoding\\\": \\\"chunked\\\", \\\"Connection\\\": \\\"keep-alive\\\", \\\"protocol\\\": \\\"http/1.1\\\"}, \\\"data

    2024年02月03日
    浏览(65)
  • git pull error: Pulling is not possible because you have unmerged files.hint: Fix them up in the ...

    git pull 报错如下 解决方案如下 PS F:jyjuyi_dataplat_web git pull error: Pulling is not possible because you have unmerged files. 错误:无法提取,因为您有未合并的文件。 hint: Fix them up in the work tree, and then use \\\'git add/rm file\\\' 提示:在工作树中修改它们,然后使用\\\'git add/rm \\\' hint: as appropriate to mark reso

    2024年01月16日
    浏览(70)
  • git clone发生了remote: The project you were looking for could not be found的错误

    在用git从远程仓库克隆项目到本地的时候 发生了remote: The project you were looking for could not be found的错误,无法正确克隆项目 原因一般有两个: 一 是你没有项目的权限,你可以在浏览器输入你的项目地址,看能不能进去,如果可以进入,则说明有权限,这样的话一般错误原因在

    2024年02月11日
    浏览(55)
  • git克隆报错remote: The project you were looking for could not be found的解决方法

    在clone项目的时候克隆失败了,错误信息如下: remote: The project you were looking for could not be found. fatal: repository \\\' http://10.134.108.109/xxxx/snpb.git\\\' not found 原因是由于我的gitlab中有多个项目多个用户,我在克隆的时候系统还使用我之前的用户来连接,所以会报错。 解决方法: 在克隆

    2024年02月14日
    浏览(49)
  • 解决github Push rejected报错 remote: error: GH013: Repository rule violations found for refs/heads/maste

    在push代码到master的时候Github 报错 remote: error: GH013: Repository rule violations found for refs/heads/main 这次是因为Github的保护机制引起rejected。错误如下: 可见是因为疑似代码中有一些key可能会泄漏,(通过给出的帮助文档 https://docs.github.com/zh/code-security/secret-scanning/push-protection-for-rep

    2024年04月16日
    浏览(76)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包