BFG Repo-Cleaner 的使用

官网

https://rtyley.github.io/bfg-repo-cleaner/
最新版需要确保本地的java为Jdk8+

背景(我为什么要使用这个工具)

最近开发中有一个需求,就是让我从一个仓库clone代码下来,然后提交到另一个仓库,需求确实不算难,理想情况:从一个地址clone下来,然后push到另一个地址,结束。现实:↗↘↗↘↘↗
在往另一个仓库push的时候,发现另一个仓库的服务器不支持这么大的文件(500多M)的库上传。
所以我在询问过负责人之后,告诉我可以把附件删除,只保留代码即可,但是手动删除之后,仓库还是那么大,因为在仓库的历史中还是有这些附件的记录的,所以就需要把这些附件从历史中进行删除。

工具的使用

1、上官网下载BFG Repo-Cleaner的客户端(jar包)

2、使用--mirror克隆一个新的仓库

$ git clone --mirror git://example.com/some-big-repo.git
--mirror 后为仓库地址,可以用https或者ssh

在进行操作之前,最好备份下这个库,操作出了问题用这个备份库即可,不用再重新下载。

下载好的库的格式:


image.png

仓库内的文件格式

ps:在启动客户端时,报错:不是一个有效的库(is not a invalid repository),就按上面的方式重新clone。

3、删除不需要的文件

将下载好的jar放到下载好的git库的同级目录
删除大于100M的文件

$ java -jar bfg.jar --strip-blobs-bigger-than 100M some-big-repo.git

删除大于100M的文件

BFG将更新您的提交以及所有分支和标记,此时还没有物理删除。使用gc去除git认为多余的数据(上面调用命令删除的文件)

$ cd some-big-repo.git
$ git reflog expire --expire=now --all && git gc --prune=now --aggressive

调用上面的命令后,文件将彻底删除(everywhere)。

4、将代码提交到远程仓库

确保文件没有任何问题之后,将代码提交到远程仓库,这将影响远程服务器上所有的refs。

$ git push

如果有必要,让其他人删除原来的仓库,因为原来的仓库中还是有脏数据,有可能会再次提交到远程仓库。

5、其他命令

1.删除所有的名为'id_dsa'或'id_rsa'的文件
$ java -jar bfg.jar --delete-files id_{dsa,rsa}  my-repo.git

2.删除所有大于50M的文件
$ java -jar bfg.jar --strip-blobs-bigger-than 50M  my-repo.git

3.删除文件夹下所有的文件
$ java -jar bfg.jar --delete-folders doc  my-repo.git

6、注意

删除文件后别忘了gc命令,工具不会清除最近一次提交的文件内容,如果需要删除,使用
--no-blob-protection,官方不推荐。在删除前最好确保最新的提交为干净的。

7、详细命令

bfg 1.13.0
Usage: bfg [options] []

  -b, --strip-blobs-bigger-than 
                           strip blobs bigger than X (eg '128K', '1M', etc)
  -B, --strip-biggest-blobs NUM
                           strip the top NUM biggest blobs
  -bi, --strip-blobs-with-ids 
                           strip blobs with the specified Git object ids
  -D, --delete-files 
                           delete files with the specified names (eg '*.class', '*.{txt,log}' - matches on file name, not path within repo)
  --delete-folders   delete folders with the specified names (eg '.svn', '*-tmp' - matches on folder name, not path within repo)
  --convert-to-git-lfs 
                           extract files with the specified names (eg '*.zip' or '*.mp4') into Git LFS
  -rt, --replace-text 
                           filter content of files, replacing matched text. Match expressions should be listed in the file, one expression per line - by default, each expression is treated as a literal, but 'regex:' & 'glob:' prefixes are supported, with '==>' to specify a replacement string other than the default of '***REMOVED***'.
  -fi, --filter-content-including 
                           do file-content filtering on files that match the specified expression (eg '*.{txt,properties}')
  -fe, --filter-content-excluding 
                           don't do file-content filtering on files that match the specified expression (eg '*.{xml,pdf}')
  -fs, --filter-content-size-threshold 
                           only do file-content filtering on files smaller than  (default is 1048576 bytes)
  -p, --protect-blobs-from 
                           protect blobs that appear in the most recent versions of the specified refs (default is 'HEAD')
  --no-blob-protection     allow the BFG to modify even your *latest* commit. Not recommended: you should have already ensured your latest commit is clean.
  --private                treat this repo-rewrite as removing private data (for example: omit old commit ids from commit messages)
  --massive-non-file-objects-sized-up-to 
                           increase memory usage to handle over-size Commits, Tags, and Trees that are up to X in size (eg '10M')
                     file path for Git repository to clean

你可能感兴趣的:(BFG Repo-Cleaner 的使用)