码迷,mamicode.com
首页 > 其他好文 > 详细

git 删除忽略文件/文件夹

时间:2020-10-29 09:58:45      阅读:17      评论:0      收藏:0      [点我收藏+]

标签:commit   dea   mat   中文   com   find   文件夹   store   master   

  • 删除文件
    find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
  • 删除文件夹及其中文件
    find . -name .idea -print0 | xargs -0 git rm -r -f --ignore-unmatch

  • git commit -m ‘del ignore file‘
  • git pull
  • git push origin master
  • git 删除忽略文件/文件夹

    标签:commit   dea   mat   中文   com   find   文件夹   store   master   

    原文地址:https://blog.51cto.com/xuguohongai/2544657

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!