有关"Local uncommitted changes, not checked in to index"

在windows下运行gitk,最上面一行出现“Local uncommitted changes, not checked in to index”,如何解决?

可以参考如下的方法:
$ git config --system --unset core.autocrlf
$ git config --global core.autocrlf false
$ git config core.autocrlf false
$ git config --unset-all core.autocrlf
$ git checkout master -f

然后在gitk --all会发现"Local uncommitted changes, not checked in to index"消失了。

请参考
http://joannaandjohn.blogspot.com/2008/06/getting-started-with-git-on-windows_11.html