【git】gitee如何清除已上传的__pycache__文件

目录

1、加入忽略名单

2、清除缓存

3、将.gitignore文件加入git

4、提交gitiginore文件,且将__pycache__从源代码仓库中删除

5、PUSH


前言:gitee如何清除已上传的__pycache__文件

1、加入忽略名单

echo */__pycache__/ >>.gitignore

2、清除缓存

git rm -r -f --cached */__pycache__


# 我报这个错误fatal: pathspec '*/__pycache__/' did not match any files

# git rm -r -f --cached __pycache__ 这个只删除了外面的



3、将.gitignore文件加入git

git add .gitignore

4、提交gitiginore文件,且将__pycache__从源代码仓库中删除

git commit -m "(gitignore commit and remove __pycache__)"

5、PUSH

git push origin master

你可能感兴趣的:(Git,git,gitee,github)