美文网首页
把某個檔案或目錄完整從 git repo 中移除

把某個檔案或目錄完整從 git repo 中移除

作者: 星晨star | 来源:发表于2017-04-19 17:38 被阅读0次

    緣起:某開發者把影片檔 commit 在 repo 裡,即使 git rm 後,因為記錄仍留在 history 中,導致在做 first push 或 clone 時,時間過久。

    git filter-branch --tree-filter 'rm -f assets/videos/hero.mp4' HEAD

    這樣就會把此 repo 從第一個 commit 開始掃描,逐一清理乾淨,最後再 force push 就可以了。

    相关文章

      网友评论

          本文标题:把某個檔案或目錄完整從 git repo 中移除

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