当前位置:   article > 正文

【Git】移除文件版本控制_怎样在git版本仓库中解除文件的控制

怎样在git版本仓库中解除文件的控制

发现远程仓库中的.idea下有2个文件,而.idea文件夹已经在.ignore中忽略了
在这里插入图片描述
所以现在要撤销对这两个文件的版本控制

展示要删除的文件表预览

$ git rm -r -n --cached ".idea"
rm '.idea/misc.xml'
rm '.idea/modules.xml'
  • 1
  • 2
  • 3

Git rm命令参数解释

执行删除命令

$ git rm -r --cached ".idea/"
rm '.idea/misc.xml'
rm '.idea/modules.xml'

  • 1
  • 2
  • 3
  • 4

提交,并加注释

$ git commit -m "remove .idea folder all file out of control"
[master 3bdaac83] remove .idea folder all file out of control
 2 files changed, 54 deletions(-)
 delete mode 100644 .idea/misc.xml
 delete mode 100644 .idea/modules.xml
  • 1
  • 2
  • 3
  • 4
  • 5

提交到远程服务器

$ git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 482 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2)
remote: Updating references: 100% (1/1)
To http://192.168.x.x:xxx/r/xx.git
   a3da5454..4c6b2261  master -> master
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

现在远程服务器就没有.idea文件了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/631488
推荐阅读
相关标签
  

闽ICP备14008679号