美文网首页技术日常
git3~清空历史纪录

git3~清空历史纪录

作者: 摹喵居士 | 来源:发表于2016-12-29 14:13 被阅读7次

    2016.12.29

    git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch 文件名' --prune-empty --tag-name-filter cat -- --all
    git push origin master --force
    rm -rf .git/refs/original/
    git reflog expire --expire=now --all
    git gc --prune=nowgit gc --aggressive --prune=now
    
    

    相关文章

      网友评论

        本文标题:git3~清空历史纪录

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