错误记录 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 command
line and try again (e.g. ‘git pull <repository> <refspec>‘).

解决办法:

首先git checkout -b temp

其次git checkout master

即可恢复到master repository的状态,然后就可以pull了

时间: 2024-10-01 04:49:04

错误记录 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时出现unable to unlink old 一个不该犯下的错误

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

Ubuntu 14.04 Server 上安装git源 mono 3.6.1 错误记录及成功步骤

看到ASP.NET vNext要支持Linux后,终于按捺不住折腾的心,决定先架个环境出来,只是实在没想到,因为相对熟悉点才选择的Ubuntu 14.04,会让过程会如此坎坷,有时呆看着屏幕上提示的种种error,真有点别人碰到的错都被我碰到了的荣幸,所以目标达成后,回头将这些错误回顾一遍,记录下来,以为将来鉴. 安装时主要参照的教程,是宇内流云写的<在Ubuntu操作系统上安装mono的具体方法>,简称文1:在排错过程中,还有参考园子里 逆水寒龙 的<Ubuntu Server(Ubu

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 

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错误

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

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