gpt4 book ai didi

python - fatal error : pathspec did not match any files using git rm to remove the pyc file

转载 作者:太空宇宙 更新时间:2023-11-03 17:16:22 24 4
gpt4 key购买 nike

我目前正在阅读一本名为《Python 测试驱动开发》的书,在第 1 章中,我必须使用

git rm -r --cached superlists/__pycache__

要删除所有 .pyc 文件,我得到了与标题相同的错误。我在论坛里搜了很多类似的问题,还是不知道如何解决。希望有人能帮助我。非常感谢

最佳答案

我在执行相同的命令时遇到了相同的错误:

解决方案1:
stackoverflow 的答案之一提到他通常的构建在 .gitignore 文件中有 .pyc - link to the answer我这样做了,然后做了“$ git add”。命令。它有效,并且未添加 __pycache__ 文件。

$echo "*.pyc" >> .gitignore

解决方案2:
我清理了要提交的文件的暂存区然后执行相同的命令。成功了

$git reset
$git rm -r --chached superlists/__pycache__

screenshot for Solution 2 希望对您有帮助!

关于python - fatal error : pathspec did not match any files using git rm to remove the pyc file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33640568/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com