13

我有一个带有子模块的 git 存储库。我需要弹出我之前隐藏的更改。但是,这会导致子模块引用的合并冲突。

我想保留我的更改,除了子模块。对于大多数代码文件,我可以通过编辑冲突文件来解决冲突,但这似乎不是子模块的选项。

如何解决合并冲突并仍然从存储中提取我的更改?

$ git stash pop
warning: Failed to merge submodule some-submodule (commits don't follow merge-base)
Auto-merging some-code
Auto-merging some-submodule
CONFLICT (submodule): Merge conflict in some-submodule

$ git status
# On branch some-branch
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#   modified:   some-code
#
# Unmerged paths:
#   (use "git reset HEAD <file>..." to unstage)
#   (use "git add/rm <file>..." as appropriate to mark resolution)
#
#   both modified:      some-submodule
4

2 回答 2

20

正如git status评论所说:git reset HEAD some-submodule

顺便说一句,在你仔细检查了你的树和索引是否应该是它们应该的样子之后,你可能会想要git stash drop. git stash pop通常会这样做,但在发生冲突时不会这样做。

于 2015-02-23T20:37:18.487 回答
0

我一直在寻找更清洁的解决方案,但最终结果证明编辑存储更简单。YMMV。

git stash show -v > foo
$EDITOR foo
       (remove the fluff you don't want)
git apply < foo

就我而言,只需删除“子项目提交”和相关的差异行即可。

于 2019-04-04T14:53:36.527 回答