.gitignore下面制定了*.pyc但是无效?

浏览:79日期:2023-11-07

问题描述

我在git的根目录下面新建了一个.gitignore文件,然后添加了以下的内容

# Byte-compiled / optimized / DLL files__pycache__/*.py[cod]

但是如果我现在修改了一个.py文件,编译后用git status查看

Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: views.py modified: views.pycno changes added to commit (use "git add" and/or "git commit -a")

请问应该怎么解决这个问题,让git忽视.pyc文件的修改

问题解答

回答1:

忽略已提交到版本的文件1.git rm -r --cached file_name/dir2.添加到.gitignore中3.提交、推送

相关文章: