我有一个带子模块的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
答案 0 :(得分:8)
正如git status
评论所说:git reset HEAD some-submodule
。
顺便说一下,在你仔细检查了你的树和索引应该是什么之后,你可能想要git stash drop
。 git stash pop
通常会这样做,但在发生冲突时却不会。
答案 1 :(得分:0)
我一直在寻找一种更清洁的解决方案,但是编辑存储却最终变得更加简单。 YMMV。
git stash show -v > foo
$EDITOR foo
(remove the fluff you don't want)
git apply < foo
就我而言,只需删除“ Subproject commit”,相关的差异行即可。