美文网首页
删除github上文件夹的两种方式(解决已经加入ignore的文

删除github上文件夹的两种方式(解决已经加入ignore的文

作者: Devid | 来源:发表于2016-02-26 15:50 被阅读4130次
    1. 如果此文件夹已被加入git追踪,那么删除方法很简单,只需要将此文件夹删掉,然后提交一下就可以了
    2. 如果次文件夹曾经被加入过git追踪,现在被加入.gitignore里了,但是github上还有此文件夹。
      对于这种情况,稍微有点复杂,因为已经加入.gitignore的文件或文件夹,无法对其进行提交了,哪怕是将其删除,都无法提交。
      我们用以下方法可以很好的解决这个问题:
    git rm -r --cached some-directory
    git commit -m 'Remove the now ignored directory "some-directory"'
    git push origin master
    

    see more: Remove directory from remote repository after adding them to .gitignore

    相关文章

      网友评论

          本文标题:删除github上文件夹的两种方式(解决已经加入ignore的文

          本文链接:https://www.haomeiwen.com/subject/nulwkttx.html