为什么.gitignore在Pycharm中不起作用?它仍然跟踪./idea下文件的更改

时间:2018-10-04 10:54:40

标签: python git pycharm gitignore

我已经在Pycharm中为我的团队项目设置了项目解释器。我已经从Git克隆了它。我们已经在.gitignore的.idea文件夹下列出了该文件。但是每次我设置项目解释器时,Pycharm都会将这些文件作为更改后的文件进行跟踪。这是我们的gitignore

*.pyc
doc/.*
partner/.*
.settings/
doc
tests/test.py
tests/format_db.py
nohup.out
crawler/uber.py
.idea/*
.vscode/*
broadcast.log
last_commit.txt

1 个答案:

答案 0 :(得分:-1)

您必须从git的缓存中删除文件。

git rm --cached file1 file2 dir/file3

来源:How to remove files that are listed in the .gitignore but still on the repository?