在开发过程中如果在编辑.gitignore时疏漏,导致本不应该上传至远程仓库的某个文件(夹)被提交,则可以使用如下方式解决
(只是从远程仓库中删除,本地文件不受影响、不会被删除)
1. 预览想要删除的文件
命令:git rm -r -n --cached 文件/文件夹名称
由于增加了参数 -n
,此时只是预览涉及的文件,不会真正删除
$ git rm -r -n --cached .idea
rm '.idea/.gitignore'
rm '.idea/DHEmbedding.iml'
rm '.idea/deployment.xml'
rm '.idea/inspectionProfiles/profiles_settings.xml'
rm '.idea/misc.xml'
rm '.idea/modules.xml'
rm '.idea/other.xml'
2. 执行删除操作
命令:git rm -r --cached 文件/文件夹名称
$ git rm -r --cached .idea
rm '.idea/.gitignore'
rm '.idea/DHEmbedding.iml'
rm '.idea/deployment.xml'
rm '.idea/inspectionProfiles/profiles_settings.xml'
rm '.idea/misc.xml'
rm '.idea/modules.xml'
rm '.idea/other.xml'
删除后 git 的状态:
$ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
deleted: .idea/.gitignore
deleted: .idea/DHEmbedding.iml
deleted: .idea/deployment.xml
deleted: .idea/inspectionProfiles/profiles_settings.xml
deleted: .idea/misc.xml
deleted: .idea/modules.xml
deleted: .idea/other.xml
Untracked files:
(use "git add <file>..." to include in what will be committed)
.idea/
删除对应的文件(夹)后记得编辑.gitignore,增加忽略项
3. 将删除操作提交至远程仓库
commit文章来源:https://www.toymoban.com/news/detail-503943.html
git commit -m "提交信息"
push文章来源地址https://www.toymoban.com/news/detail-503943.html
git push
到了这里,关于git 删除远程仓库中的文件(夹)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!