当前位置:   article > 正文

git如何移除某文件夹的版本控制_单个文件夹删除git版本控制

单个文件夹删除git版本控制

git rm

命令参数

  1. -n --dry-run
  2. Don’t actually remove any file(s). Instead, just show if they exist in the index and would otherwise be removed by the command.
  3. -r
  4. Allow recursive removal when a leading directory name is given.
  5. --cached
  6. Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not, will be left alone.

解决方法

  1. git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。
  2. git rm -r --cached "bin/" //最终执行命令.
  3. git commit -m" remove bin folder all file out of control" //提交
  4. git push origin master //提交到远程服务器

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

闽ICP备14008679号