作为在这个问题中,我也想知道如何解决一个冲突的git stash pop
,而不添加所有的修改提交(就像"git stash pop"没有冲突就可以)。
我目前的方法非常不酷,因为我是这样做的:
git stash pop # -> CONFLICT
git stash drop
# [resolve conflict]
# [add conflict files]
git reset HEAD # <all files that are in commit-mode>
如何繁殖:
mkdir foo; cd foo; git init
echo "1" > one
echo "2" > two
git add -A; git commit -m "first"
echo "1.1" > one
echo "2.1" > two
git stash
echo "2.2" > two
git commit -a -m "second"
echo "Only this file would stay in HEAD without the conflict" > third
git add third
git stash pop
git status
2016-06-27:在示例中添加了一个名为“third”的新文件,以显示像来自scy的解决方案这样的解决方法只适用于空的HEAD,但不能修复最初的问题,即HEAD没有相同的内容,例如没有冲突的git stash pop
。