博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git push -u origin master error: failed to push some refs to
阅读量:5305 次
发布时间:2019-06-14

本文共 795 字,大约阅读时间需要 2 分钟。

1.问题描述

$ git push -u origin masterTo github.com:[github_name]/[github_repository_name].git ! [rejected]        master -> master (non-fast-forward)error: failed to push some refs to 'git@github.com:[github_name]/[github_repository_name].git'hint: Updates were rejected because the tip of your current branch is behindhint: 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.

2.问题原因

看错误原因 “Updates were rejected because the tip of your current branch is behind”,导致问题的原因是创建 repository 时选择创建 README 因此导致 github 与本地无法同步

3.解决方案

使用下面的命令,将两端同步即可!

git pull --rebase origin master

然后再使用 git push -u origin master 可以发现能够正常 push 了。

转载于:https://www.cnblogs.com/HurryXin/p/8652913.html

你可能感兴趣的文章
公交线路查询接口文档
查看>>
一个类似抖音 APP 拍摄按钮效果的控件
查看>>
SRM 582 Div II Level One: SemiPerfectSquare
查看>>
Matlab,Visio等生成的图片的字体嵌入问题解决方法
查看>>
hdu 2896 病毒侵袭 AC自动机 基础题
查看>>
新版博客专家实名制处理结果公示:未提供实名的专家将取消专家称号
查看>>
CEF3研究(二)
查看>>
如果设置网络优先级
查看>>
delphi Align属性
查看>>
创建一个Windows窗体
查看>>
Java中使用Log的方法
查看>>
初识Java教程
查看>>
iOS 支付宝第三方使用步骤
查看>>
Template(Updating)
查看>>
Python 基础(三)之流程控制(1)——if…else
查看>>
sublime text3安装Package Control
查看>>
火狐扩展开发用到的配置及工具
查看>>
Linux学习--进程创建
查看>>
Firebug & Chrome Console 控制台使用指南
查看>>
#404 (div2)Anton and Permutation (分块处理)
查看>>