删除GIT中的文件

时间:2010-06-24 09:48:56

标签: git

如何删除远程存储库中的文件?

2 个答案:

答案 0 :(得分:2)

从存储库和文件系统中删除文件

git rm my_path/my_file

强制删除文件

git rm --force my_path/my_file

仅从存储库中删除不在文件系统中的文件

git rm --cached my_path/my_file

答案 1 :(得分:0)

我认为您可以尝试使用此git filter-branch命令重写远程原点分支。所以删除那些你想在所有提交中清理的文件。

http://git-scm.com/docs/git-filter-branch