已经提交在 gitee 上的文件,再设置忽略文件.gitignore
,怎么成立
- 忽略已经提交的文件,可以使用以下命令将这些文件从Git中移除(但是保留在本地文件系统中):
git rm --cached <file_name>
//例:git rm --cached *.doc
- 提交这些更改到Git仓库
git commit -m "Update .gitignore to ignore certain files"
- 将版本库内容推到远程仓库
git push origin master
git push -u origin master -f【这个】