git删除之前上传的

之前文件上传到github上了,但是现在又想要把它删除但是没有找到方法,在网上搜索了很久才找到个有用的。

删除文件

git rm filename
git commit -m "删除"

但是这时候git push发现没有效果。

之后还要:

清除缓存:

git rm -r --cached .
git add .

提交记录:

git commit -m "删除"
git push

你可能感兴趣的:(Linux,git)