我有这样的结构
SDI
|-.gitignore
\-webapp
在 SDI/webapp/app 目录中,当我运行时git rm -r --cached .
,我看到这样的文件已删除
rm 'webapp/app/views/MyStuff/myGroups.html'
rm 'webapp/app/views/MyStuff/userAdd.html'
rm 'webapp/app/views/MyStuff/userEdit.html'
rm 'webapp/app/views/auth/Secure/login.html'
rm 'webapp/app/views/errors/404.html'
rm 'webapp/app/views/errors/500.html'
rm 'webapp/app/views/main.html'
rm 'webapp/app/views/tags/auth/check.tag'
rm 'webapp/app/views/tags/generic.html'
rm 'webapp/app/views/tags/text.html'
我.gitignore contents
的如下
eclipse/
tmp/
bin/
tools/play-1.2.5/framework/pym/
为什么它会删除我的所有文件?git config file.mode false
与我过去做过的其他存储库相比,我确实拥有这个存储库中唯一独一无二的东西。