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


    Switched to a new branch 'name'
    15:37:02.655: [06-Turbulent_flow_spectrum] git -c credential.helper= -c http.sslBackend=schannel -c core.quotepath=false -c log.showSignature=false push --progress --porcelain origin refs/heads/dev_zgd:dev_zgd
    error: failed to push some refs to 'http://10.35.161.175/zhaoguandong/mygitlabproject.git'
    hint: Updates were rejected because the tip of your current branch is behind
    To http://10.35.161.175/zhaoguandong/mygitlabproject.git
    !	refs/heads/dev_zgd:refs/heads/dev_zgd	[rejected] (non-fast-forward)
    hint: its remote counterpart. Integrate the remote changes (e.g.
    Done
    hint: 'git pull ...') before pushing again.
    hint: See the 'Note about fast-forwards' in 'git push --help' for details.
    15:37:58.276: [06-Turbulent_flow_spectrum] git -c credential.helper= -c http.sslBackend=schannel -c core.quotepath=false -c log.showSignature=false rm --ignore-unmatch --cached -r -- .idea/misc.xml
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    解决用git push origin master时出现的问题
    不知道小伙伴们在使用git push origin master时有没有遇到下面的问题,今天我遇到了,原因一般是相同的,下面详细分析一下

    报错内容:
    To github.com:/
    ! [rejected] master -> master (non-fast-forward)
    error: failed to push some refs to ‘git@github.com:/
    hint: Updates were rejected because the tip of your current branch is behind
    hint: its remote counterpart. Integrate the remote changes (e.g.
    hint: ‘git pull …’) before pushing again.
    hint: See the ‘Note about fast-forwards’ in ‘git push --help’ for details.

    大致翻译为:
    错误:无法将一些引用推送到’git@github.com:****** / Demo.git’
    提示:由于当前分支的尖端位于其远程对应的后面,因此更新被拒绝。 合并远程更改(例如’git pull’),然后再次推送。 有关详细信息,请参见“ git push --help”中的“关于fast-forwards的注意事项”。
    这个报错的原因是因为远程repository和本地的repository有冲突,下面有3种解决办法:

    按上面报错内容中所给的提示先用git pull之后再用git push

    $ git pull origin master
    $ git push origin master

    使用强制push的方法,但是这会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候

    $ git push origin master -f

    如果不想merge远程和本地修改,可以先创建新的分支,然后再push

    $ git branch [name]
    $ git push origin [name]

  • 相关阅读:
    全卷积神经网络概述学习记录
    大数据可视化之医疗大数据平台
    java-net-php-python-s2s酒店管理系统计算机毕业设计程序
    四、文件管理(三)文件系统
    齐岳离子液体[C1MIm]SbF6/cas:885624-41-9/1,3-二甲基咪唑六氟锑酸盐/分子式:C5H9F6N2Sb
    mmdetection使用wandb查看训练日志
    力扣周赛372 模拟 思维 位运算 java
    数据库监控:关键指标和注意事项
    水库大坝安全监测系统建设方案
    开源办公OA平台教程:SmartBI集成版快速部署及使用(O2OA容器化部署)
  • 原文地址:https://blog.csdn.net/weixin_46713695/article/details/126747240