• 彻底删除git中的文件(包括历史提交记录)


    https://gitbook.tw/chapters/faq/remove-files-from-git.html

    https://stackoverflow.com/questions/2164581/remove-file-from-git-repository-history

    https://blog.csdn.net/weixin_34392435/article/details/92166474

    如何真正移除git文件且不影响版本库:

    方法:使用 Rebase 或 filter-branch 指令來整理

    比如git filter-branch 

    $ git filter-branch --tree-filter "rm -f config/test.c"
    Rewrite 27f6ed6da50dbee5adbb68102266a91dc097ad3f (7/7) (0 seconds passed, remaining 0 predicted)
    Ref 'refs/heads/master' was rewritten
    

      但这样的删除并不彻底,随时可以恢复文件。

    $ git reset refs/original/refs/heads/master --hard
    or
    $ git reflog&&git checkout $commit-SHA1
    

      因此,需要在git filter-branch之后,继续执行:

    $ git filter-branch -f --tree-filter "rm -f config/test.c" # 个人更使用喜欢参数为--index-filter,--all filtered all refs; --tag-name-filter cat 删除原始tag
    
    #回收内存的操作 $ rm .git/refs/original/refs/heads/master # $ rm .git/refs/original 删除git的备份 $ git reflog expire --all --expire=now #使所有散落的object失效 $ git fsck --unreachable #检查是否有散落的object, 验证数据库中对象的连接性和有效性 $ git gc --prune=now #git的垃圾清理车最终删除那些对象 git gc --aggressive --prune=now , --aggressive 此选项将导致git gc更积极地优化存储库,但代价是花费更多时间。
    --prune=<date> Prune loose objects older than date 修剪比日期更早的松散物体。可以在此之前执行 git repack -A -d 在存储库中打包解压缩的对象。 删除冗余的对象
    $ git fsck #检查是否还有对应的object,现在已经找不到提交的sha1了

      可以使用该脚本查看大文件(https://github.com/appke/geekBigData/blob/master/findBigFile.sh)

    #!/bin/bash
    #set -x 
     
    # Shows you the largest objects in your repo's pack file.
    # Written for osx.
    #
    # @see https://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/
    # @author Antony Stubbs
     
    # set the internal field spereator to line break, so that we can iterate easily over the verify-pack output
    IFS=$'
    ';
     
    # list all objects including their size, sort by size, take top 10 查出已删除的大文件前10名的commit SHA值
    objects=`git verify-pack -v .git/objects/pack/pack-*.idx | grep -v chain | sort -k3nr | head`
    echo "All sizes are in kB's. The pack column is the size of the object, compressed, inside the pack file." output="size,pack,SHA,location" for y in $objects do # extract the size in bytes size=$((`echo $y | cut -f 5 -d ' '`/1024)) # extract the compressed size in bytes compressedSize=$((`echo $y | cut -f 6 -d ' '`/1024)) # extract the SHA sha=`echo $y | cut -f 1 -d ' '` # find the objects location in the repository tree other=`git rev-list --all --objects | grep $sha` #lineBreak=`echo -e " "` output="${output} ${size},${compressedSize},${other}" done echo -e $output | column -t -s ', '
    • 查看文件大小
    du -ah .git/objects
    • 占用空间最多的五个文件 链接:https://www.jianshu.com/p/fe3023bdc825
    git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -5 | awk '{print$1}')"

    git filter-branch -- 重写 branches

     https://cloud.tencent.com/developer/section/1138641

    git filter-branch [--env-filter <command>][--tree-filter <command>][--index-filter <command>][--parent-filter <command>]
    [--msg-filter <command>][--commit-filter <command>][--tag-name-filter <command>][--subdirectory-filter <directory>]
    [--prune-empty][--original <namespace>][-d <directory>][-f|--force][--][<rev-list options>…​] --env-filter <command> #修改将在其中执行提交的环境,常用于重写作者/提交者名称/电子邮件/时间环境变量。
    (GIT_AUTHOR_NAME,GIT_AUTHOR_EMAIL,GIT_AUTHOR_DATE,GIT_COMMITTER_NAME,GIT_COMMITTER_EMAIL,GIT_COMMITTER_DATE) e.g. git filter-branch --env-filter ' if test "$GIT_AUTHOR_EMAIL" = "root@localhost" then GIT_AUTHOR_EMAIL=john@example.com export GIT_AUTHOR_EMAIL fi if test "$GIT_COMMITTER_EMAIL" = "root@localhost" then GIT_COMMITTER_EMAIL=john@example.com export GIT_COMMITTER_EMAIL fi ' -- --all --tree-filter <command> #用于重写tree及其内容的过滤器。新增或删除文档 --index-filter <command> #重写索引的过滤器。类似于树过滤器,但不检出树,因此速度更快。经常与结合使用git rm --cached --ignore-unmatch ...

    ##--tree-filter将每个提交签出到临时目录中,运行filter命令,并从临时目录中的任何内容生成新的提交;
    ##而--index-filter将每个提交复制到索引中,运行filter命令,并从索引中的任何内容生成新的提交。 --parent-filter <command> #用于重写提交的父列表的过滤器。它将在stdin上接收父字符串,并在stdout上输出新的父字符串。 --msg-filter <command> #重写提交消息。 --commit-filter <command> #执行提交的过滤器 --tag-name-filter <command> #重写标签名称,原始标签不会被删除,但可以被覆盖;使用“ --tag-name-filter cat”来简单地更新标签。
    在这种情况下,请格外小心,并确保备份了旧标签,以防转换失败。 --subdirectory-filter <directory> #只查看涉及给定子目录的历史记录 --prune-empty #过滤常常生成空的提交,从而使树保持不变。此参会删除空提交。因此仅适用于只有一个父对象的提交它将保留合并点。与--commit-filter不兼容。 --original <namespace> #使用此选项设置原始提交将存储在其中的名称空间。默认值是refs/original。 -d <directory> #使用此选项可将路径设置为用于重写的临时目录。使用tree-filter, 该命令需要暂时将该树检出到某个目录,大型项目的情况下可能消耗很大空间。
    默认情况下,它在.git-rewrite/目录中执行此操作,但您可以通过此参数覆盖该选项。 -f/--force #git filter-branch拒绝从现有的临时目录开始过滤,或者当已经有ref时refs/original/,使用该参数强制执行过滤。 <rev-list options>…​ #参数git rev-list。
    #所有positive refs都被重写。您也可以指定选项--all,但您必须使用--将修订选项与git filter-branch选项分开。--all重写所有分支和标记。

      

  • 相关阅读:
    C struct 中字节对齐问题(转)
    蚁群算法,PSO算法以及两种算法可以融合的几种方法
    遗传及蚁群算法
    ListBox FAQ常用问题
    关于C#中ListBox控件重绘Item项
    创业艰难,问题多多
    asp.net客户端脚本验证小技巧
    防止ASP.NET按钮多次提交的办法
    鼠标点到文本框时的提示信息
    枚举的转换
  • 原文地址:https://www.cnblogs.com/chenyuting/p/11912316.html
Copyright © 2020-2023  润新知