git mergetool 与 opendiff 总是让我进入“无分支”状态

发布于 2024-10-25 19:38:08 字数 345 浏览 4 评论 0原文

我正在尝试使用以下命令使功能分支(“tricoherence”)与主分支保持同步:

git rebase master tricoherence

毫不奇怪,我遇到了合并冲突。没问题,我启动 git mergetool 并扭转局面。 (我认为)至关重要的是,我使用 opendiff (== FileMerge) 来解决合并问题。当我将文件保存在 FileMerge 中时,我返回终端,发现我不再在我的分支中:

computer$ git branch
* (no branch)
  master
  tricoherence

发生了什么?

I'm trying to bring a feature branch ("tricoherence") up-to-date with the master branch using this command:

git rebase master tricoherence

Unsurprisingly, I have a merge conflict. No problem, I fire up git mergetool and save the day. Of critical importance (I think) is that I'm using opendiff (== FileMerge) to resolve merges. When I save the file in FileMerge, I go back to the terminal, and find that I'm no longer in my branch:

computer$ git branch
* (no branch)
  master
  tricoherence

What happened?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

待"谢繁草 2024-11-01 19:38:08

所以,我在 #git irc 频道上得到了答案:

doener:变基总是在分离的 HEAD 上运行。一旦变基完成,原始分支头就会更新

SethRobertsongit rebase --continue 我相信。我相信您需要首先 git add 文件

所以,按顺序:

git rebase master tricoherence
git mergetool
# remember to delete the <file>.orig file made by opendiff
git add <file>
git rebase --continue

So, I got the answer on the #git irc channel:

doener : rebase always operates on a detached HEAD. The original branch head is updated once the rebase is complete

SethRobertson : git rebase --continue I believe. I believe you need to git add the files first

So, in order:

git rebase master tricoherence
git mergetool
# remember to delete the <file>.orig file made by opendiff
git add <file>
git rebase --continue
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文