gitignore无法忽略库中的.pyc文件

时间:2019-06-21 14:18:47

标签: git gitignore pyc

我的gitignore有以下几行

__init__.cpython-36.pyc
functions.cpython-36.pyc
.DS_Store
__pycache__
*.pyc

但是我的git客户端仍在注册对pyc文件的更改

enter image description here

在线阅读后,我只是不明白我的问题是什么。有任何想法吗?让我知道是否需要提供更多信息。谢谢

1 个答案:

答案 0 :(得分:0)

在创建.gitignore之前已经跟踪了此文件。在那里面 如果您需要取消跟踪:

git rm --cached ...

来自man git-rm

  

-缓存

       Use this option to unstage and remove paths only from the
       index. Working tree files, whether modified or not, will be
       left alone.