我有两个远程回购的情况:
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
这里有什么问题?
答案 0 :(得分:0)
您在merge
之后错过了fetch
吗?
尝试:
$ git pull
$ git cherry-pick ...