git fatal:来自另一个远程的cherry-pick提交时的坏对象

时间:2017-11-23 12:26:47

标签: git

我有两个远程回购的情况:

my-repo
  -master
  -mybranch (branch-to-cherry-pick-to)

other-repo
  -master (branch-to-cherry-pick-from)

所以我想从其他遥控器主分支中获取一些樱桃选择到mybranch。

我添加了另一个遥控器:git add remote other-origin somegitrepo并通过git remote -v进行验证,显示我的输出如下:

origin my-repo (fetch)
origin my-repo (push)
other-origin other-repo (fetch)
other-origin other-repo (push)

现在,当我尝试git cherry-pick commitnr时,我得到fatal: bad object 错误。

我想提交btw的提交:https://github.com/wekan/wekan/pull/1003/commits

我也做了git fetch --all

这里有什么问题?

1 个答案:

答案 0 :(得分:0)

您在merge之后错过了fetch吗?

尝试:

$ git pull
$ git cherry-pick ...