我的gitignore有以下几行
__init__.cpython-36.pyc
functions.cpython-36.pyc
.DS_Store
__pycache__
*.pyc
但是我的git客户端仍在注册对pyc文件的更改
在线阅读后,我只是不明白我的问题是什么。有任何想法吗?让我知道是否需要提供更多信息。谢谢
答案 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.