美文网首页
Git 常见问题

Git 常见问题

作者: MrTricker | 来源:发表于2019-05-14 13:36 被阅读0次

git pull 拉去远程库代码到本地,提示错误 refusing to merge unrelated histories

$ git pull
...
fatal: refusing to merge unrelated histories

字面理解:拒绝合并,与历史记录无关。
git 认为远程库与你的本地代码,相关性太小。

解决方法:
强制 git 允许合并与本地无关的远程代码库。

$ git pull --allow-unrelated-histories

git push 推送本地代码到远程仓库,错误提示 failed to push some refs to 'https://github.com/repository/example.git'

$ git push
...
error: failed to push some refs to 'https://github.com/repository/example.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

字面理解:推送失败,远程库含有本地库没有的内容。
多人合作的时候,本地的代码想要 push 到远程库,需要先把远程库的代码 pull 到本地。养成 push 前,先 pull 的习惯。

解决方法:
Pull before push, make it a habit.

相关文章

  • 最简洁的Git介绍

    一、解决问题 1、Git原理;2、Git的常见操作;3、Git常见问题以及相关操作; 二、Git原理 1、四大区域...

  • git 入门系列(一)

    git学习-commit、push常见问题及解决措施(一) git commit 当本地修改完分支,准备将暂存区的...

  • 本地项目关联远程Git仓库

    步骤 本地项目初始化 git 关联远程仓库 提交暂存 提交到分支 推送 移除 git 常见问题 如何配置邮箱和用户...

  • GIT操作结构

    git从开始的接触到熟练,以及常见问题解决方法

  • linux安装git与coding连接

    通过git将coding上的代码拉下来 主要参考的是coding的文档 Git 操作常见问题 这篇文章条例也很清晰...

  • 修改 Git 已经提交记录的 用户名 和邮箱

    修改 Git 已经提交记录的 用户名 和邮箱 有关 Git 和版本控制的常见问题。 如何更改提交的作者姓名/电子邮...

  • git/svn 技巧以及常见问题整理

    Git 实用技巧 Git乱码问题解决方案汇总 常用快捷键 常见问题 遇到多个commit回滚的情况,采用方案如下 ...

  • git常见问题

    git 切换分支时,出现HEAD detached解决方案 从master直接切换到另一分支名(drpV2.0.2...

  • git常见问题

    个人技术博客地址:http://songmingyao.com/ 环境:Ubuntu 16.04 使用Git经常会...

  • git 常见问题

    fatal: refusing to merge unrelated histories git pull ori...

网友评论

      本文标题:Git 常见问题

      本文链接:https://www.haomeiwen.com/subject/ctrsaqtx.html