无法看到git filter-branch抱怨的未分级更改

时间:2013-08-27 15:09:28

标签: git git-filter-branch

在新的repo克隆上,git filter-branch抱怨我有未分阶段的更改,例如

$ git filter-branch --subdirectory-filter plugins/hypervisors/hyperv -- --all 
Cannot rewrite branches: You have unstaged changes.

但是,这些git status表示没有变化:

$ git status
# On branch master
nothing to commit (working directory clean)

我在哪里可以找出有哪些变化?

1 个答案:

答案 0 :(得分:1)

通过擦拭藏匿物来解决,例如

git stash drop

Source

知道藏匿的变化来自哪里会很有趣。