• 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数组详解
    如何快速用一条命令配置好本地yum源(6/7/8版本)
    容器的通俗讲解
    仿牛客网讨论社区项目—项目总结及项目常见面试题
    Java跳动爱心代码
    热门Java开发工具IDEA入门指南——初次运行IntelliJ IDEA
    免费考AI OCP认证,附通关秘籍!
    Rhinoceros 8(犀牛8 mac版)简体中文
    HDFS、MapReduce原理--学习笔记
    (37)STM32——DHT11数字温湿度传感器实验
  • 原文地址:https://blog.csdn.net/weixin_46713695/article/details/126747240