3

在新的 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)

我在哪里寻找变化是什么?

4

1 回答 1

2

通过擦拭隐藏来解决,例如

git stash drop

资源

知道对存储的更改来自哪里会很有趣。

于 2014-10-01T14:32:00.527 回答