0


git 删除远程仓库中的文件(夹)

在开发过程中如果在编辑.gitignore时疏漏,导致本不应该上传至远程仓库的某个文件(夹)被提交,则可以使用如下方式解决
(只是从远程仓库中删除,本地文件不受影响、不会被删除)

1. 预览想要删除的文件

命令:

git rm -r -n --cached 文件/文件夹名称

由于增加了参数

-n

,此时只是预览涉及的文件,不会真正删除

$ gitrm -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 文件/文件夹名称
$ gitrm -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

git commit -m "提交信息"

push

git push
标签: git github

本文转载自: https://blog.csdn.net/Old_D7/article/details/127480304
版权归原作者 Old_D7 所有, 如有侵权,请联系我们删除。

“git 删除远程仓库中的文件(夹)”的评论:

还没有评论