博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git init 后关联github仓库是发生错误:
阅读量:6633 次
发布时间:2019-06-25

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

: failed to push some refs to 'git@github.com:AlanKnightly/reactC.git'

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 init后执行

git pull -f  --all

然后再git add 、git commit

虽然输入git pull origin master 等操作无效 

网上一查发现最简单的解决办法:

git push -u origin master -f 

 

转载于:https://www.cnblogs.com/alan2kat/p/7777481.html

你可能感兴趣的文章
awk单行脚本
查看>>
软件开发之通病解析
查看>>
python wxPython 5 (框架 wx.Frame)
查看>>
windows server backup 功能备份虚拟机
查看>>
PHP多进程
查看>>
现代前端开发路线图:从零开始,一步步成为前端工程师
查看>>
ESXi 5.0设置时间
查看>>
WIN2008R2下安装plsqldeveloper和toad
查看>>
jquery 通过点击事件获取id
查看>>
Linux无人值守自动化安装详细配置流程!
查看>>
hadoop2.4.1+hbase0.98.3实现的分布式网盘系统初步
查看>>
ibatis批量新增-自增长序列
查看>>
linux系统管理之九:rpm安装包
查看>>
Linux系统中查看日志的常用命令
查看>>
java基础(二) 自增自减与贪心规则
查看>>
VMWare View的组件
查看>>
Linux下date命令使用举例说明
查看>>
Centos6下SVN服务器(结合Apache)的搭建
查看>>
Reactor和Proactor模式
查看>>
实验:关于XPath中的13个轴
查看>>