我正在使用 git-svn,我正在尝试运行git svn rebase
.
我得到错误:
Your local changes to the following files would be overwritten by checkout:
<filename>
Please, commit your changes or stash them before you can switch branches.
我以前运行过git update-index --assume-unchanged <filename>
,并对文件进行了更改,但现在我已经运行git update-index --no-assume-unchanged <filename>
以摆脱它。
git status
没有报告任何变化,并git stash
说没有什么可藏匿的。
我已检查该文件不在.gitignore
或.git/info/exclude
如何进一步调试此问题?