git pull错误

1. Pull is not possible because you have unmerged files.

症状:pull的时候

$ git pull

Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use ‘git add/rm <file>‘
as appropriate to mark resolution, or use ‘git commit -a‘

应该是因为local文件冲突了

解决方法:

引用――

1.pull会使用git merge导致冲突,需要将冲突的文件resolve掉 git add -u, git commit之后才能成功pull.

2.如果想放弃本地的文件修改,可以使用git reset --hard FETCH_HEAD,FETCH_HEAD表示上一次成功git pull之后形成的commit点。然后git pull.
注意:

git merge会形成MERGE-HEAD(FETCH-HEAD) 。git push会形成HEAD这样的引用。HEAD代表本地最近成功push后形成的引用。

时间: 2024-10-15 19:27:16

git pull错误的相关文章

git pull错误记录及解决

执行操作:$ git pull 返回错误: error: RPC failed; result=7, HTTP code = 0 fatal: The remote and hung up unexpectedly 然后,更换github的邮箱换为最初的gmail的, 重新执行操作:$ git pull origiin m8:liuyk 得到响应:Already up-to-date. 多次执行同样操作: 得到响应: fatal: unable to access 'https://github

git pull 错误:The following untracked working tree files would be overwritten by merge

错误描述: $ git pull origin alphaFrom https://github.com/shirley-wu/HeartTrace * branch            alpha      -> FETCH_HEADerror: The following untracked working tree files would be overwritten by merge:        .gradle/4.4/fileChanges/last-build.bin     

git pull时出现unable to unlink old 一个不该犯下的错误

在日常开发中,当团队内有人将新的代码打成jar文件提交,并且未改名的时候,可能会出现这样的错误"error: unable to unlink old 'Test/lib/xxx-1.0.0.jar' (Invalid argument)"    .咋一看很疑惑,说是无法取消旧的链接,还以为是jar包内部的更改导致冲突,其实这只是jar包正在被使用导致的,解决办法就是将运行的代码停止后在重新git pull一下就可以了.

错误记录 git pull

在安装open-falcon的nodata组件,更新库的时候,git pull 报错: You are not currently on a branch, so I cannot use any'branch.<branchname>.merge' in your configuration file.Please specify which branch you want to merge with on the commandline and try again (e.g. 'git p

git pull遇到错误:error: Your local changes to the following files would be overwritten by merge:

方法1:如果你想保留刚才本地修改的代码,并把git服务器上的代码pull到本地(本地刚才修改的代码将会被暂时封存起来) [plain] view plain copy git stash git pull origin master git stash pop 如此一来,服务器上的代码更新到了本地,而且你本地修改的代码也没有被覆盖,之后使用add,commit,push 命令即可更新本地代码到服务器了. 方法2.如果你想完全地覆盖本地的代码,只保留服务器端代码,则直接回退到上一个版本,再进行pu

git pull 提示错误,Your local changes to the following files would be overwritten by merge

error: Your local changes to the following files would be overwritten by merge: Please commit your changes or stash them before you merge. 解决办法: 1.服务器代码合并本地代码 $ git stash //暂存当前正在进行的工作. $ git pull origin master //拉取服务器的代码 $ git stash pop //合并暂存的代码 2.

git pull 与git fetch的区别

从百度上看到很多关于git fetch 和 git  pull 的不同 实践一下: 从github上新建一个项目try,copy到本地. 在github网站里修改readme.txt文件,新增加一句[alter readme] 在本地仓库的readme.txt也新增加一句,[add some thing] 现在想把本地代码提交到github上,是不能提交的.会出现错误提示!!! 应该先从远程仓库中把代码下载下来 (1)用git pull会怎么样呢? git pull origin master

Git Pull 避免用户名和密码方法

在开发中使用的版本控制器时git , 每次使用命令"git pull"从服务器获得最新代码时,都需要输入用户名和密码,这样浪费了大量的时间和热情,在此背景下,本文在网上找到解决版本,在此做一个总结,已做留念. 1 查看项目的存放地址 首先看下每次输入用户名和密码的提示.项目存放在以下地址: http://192.9.100.193 2 创建 Git 存储用户名和密码 在%HOME%目录中,一般是 c:/users/{当前用户名} 目录下.文件名为.git-credentials,由于在

git 解决错误记录

git init commit 等bug error: src refspec master does not match any. 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 error: insufficient permission for adding an object to repository database ./objects   服务端没有可写目录的权限 错误提示:fatal: remote origin already exists. 解决办法:$ git