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

解决用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]

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值