博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
github报错failed to push some refs to 'git
阅读量:5066 次
发布时间:2019-06-12

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

$ git push origin masterWarning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts.To git@github.com:Tuesdday/pythoncode.git ! [rejected]        master -> master (fetch first)error: failed to push some refs to 'git@github.com:Tuesdday/pythoncode.git'#提交代码时报错hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

出现问题的原因:

github中的README.md文件不在本地代码目录中

解决办法:

$ git pull --rebase origin master  #执行这一步。warning: no common commitsremote: Counting objects: 3, done.remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0Unpacking objects: 100% (3/3), done.From github.com:Tuesdday/pythoncode * branch            master     -> FETCH_HEAD * [new branch]      master     -> origin/masterFirst, rewinding head to replay your work on top of it...Applying: practice

结果:

本地代码目录下出现 README.md 文档

此时 再执行以下操作 代码成功上传至github

git push -u origin masterCounting objects: 15, done.Delta compression using up to 4 threads.Compressing objects: 100% (13/13), done.Writing objects: 100% (15/15), 3.27 KiB | 0 bytes/s, done.Total 15 (delta 1), reused 0 (delta 0)To git@github.com:Tuesdday/pythoncode.git   28bae99..eb67c9a  master -> masterBranch master set up to track remote branch master from origin.

转载于:https://www.cnblogs.com/aallenn/p/6700625.html

你可能感兴趣的文章
数据库框架的log4j日志配置
查看>>
lintcode-easy-Remove Element
查看>>
mysql 根据地图 坐标 查询 周边景区、酒店
查看>>
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
switchcase的用法
查看>>
React.js 小书 Lesson15 - 实战分析:评论功能(二)
查看>>
Java基础03 构造器与方法重载
查看>>
Redis 主从集群搭建及哨兵模式配置
查看>>
nginx ------反向代理和负载均衡
查看>>
908. Smallest Range I
查看>>
ThinkPHP 分页实现
查看>>
jQuery在线手册
查看>>
APPLE-SA-2019-3-25-3 tvOS 12.2
查看>>
刚刚开始
查看>>
Optional 的基本用法
查看>>
php实现隐藏字符串的功能
查看>>
编写高质量代码改善C#程序的157个建议——建议157:从写第一个界面开始,就进行自动化测试...
查看>>
公网IP和私有IP的区别和用途
查看>>