1.忽略已经提交至远程分支文件
1.1 忽略文件:
Git工作区的根目录下创建一个特殊的 .gitignore 文件
具体规则详见:https://github.com/github/gitignore
1.2 删除远程分支文件
格式:git rm --cached 路径
报错:fatal: not removing '.svn' recursively without -r
加参数 -r 进行强制删除
git rm -r --cached .svn
查看结果并重新提交
git status
git commmit -m "名称"
git push
最后,记得将该目录添加至 .gitignore 文件
参考:常用Git命令手册_fatal: not removing '' recursively without -r-CSDN博客
标签:文件,Git,cached,removing,git,指令,合集,gitignore From: https://blog.csdn.net/qq_53560046/article/details/142781890