如何从git存储库中删除文件而不实际删除文件


How to remove a file from git repository without deleting the file actually

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Git: Remove a file from the repository without deleting it from the local filesystem

我知道代码"git rm"可以从git存储库中删除文件,但也可以从muy计算机中删除该文件。

是否有一种方法可以从Git存储库中删除文件,而不实际从我的计算机中删除该文件?


git rm --cached filename

您的计算机将把文件在线。

这是本svn delete --keep-local等效到SVN的Git