1

我使用 git 作为我的 vcs。

我有一个报告文件夹,并将其添加到 git 控件中,现在我不想跟踪这个文件夹,然后我添加了 git ignore 文件,但似乎 git 仍然跟踪这个文件夹。

我用谷歌搜索,一些网页建议git rm --cached filename,我运行它,但收到一条致命消息pathspec 'filename' did not match any files

如何解决这个问题?让 git 不跟踪这些文件?

我的文件夹是这样的:

报告

|--readme.txt

|--report.html

|--截图

|----失败.png

我的 .gitignore 文件就是这个

report/*.html
report/screenshots/
4

1 回答 1

1

在你的情况下,你必须做git rm -r --cached reports

于 2013-10-08T09:48:02.137 回答