是否可以显示两次提交之间的总文件大小差异?类似于:
$ git file-size-diff 7f3219 bad418 # I wish this worked :) -1234 bytes
我试过了:
$ git diff --patch-with-stat
这显示了diff中每个 * binary * 文件的文件大小差异,但不显示文本文件的差异,也不显示总文件大小差异。有什么想法吗?
ef1yzkbh1#
git cat-file -s会输出git中对象的字节大小。git diff-tree可以告诉你一棵树和另一棵树之间的区别。将这些放在PATH中的一个名为git-file-size-diff的脚本中,这样就可以调用git file-size-diff <tree-ish> <tree-ish>。
git cat-file -s
git diff-tree
git-file-size-diff
git file-size-diff <tree-ish> <tree-ish>
#!/bin/bash USAGE='[--cached] [<rev-list-options>...] Show file size changes between two commits or the index and a commit.' SUBDIRECTORY_OK=1 . "$(git --exec-path)/git-sh-setup" args=$(git rev-parse --sq "$@") [ -n "$args" ] || usage cmd="diff-tree -r" [[ $args =~ "--cached" ]] && cmd="diff-index" eval "git $cmd $args" | { total=0 while read A B C D M P do case $M in M) bytes=$(( $(git cat-file -s $D) - $(git cat-file -s $C) )) ;; A) bytes=$(git cat-file -s $D) ;; D) bytes=-$(git cat-file -s $C) ;; *) echo >&2 warning: unhandled mode $M in \"$A $B $C $D $M $P\" continue ;; esac total=$(( $total + $bytes )) printf '%d\t%s\n' $bytes "$P" done echo total $total }
在使用中,这看起来如下所示:
$ git file-size-diff HEAD~850..HEAD~845 -234 Documentation/RelNotes/1.7.7.txt 112 Documentation/git.txt -4 GIT-VERSION-GEN 43 builtin/grep.c 42 diff-lib.c 594 git-rebase--interactive.sh 381 t/t3404-rebase-interactive.sh 114 t/test-lib.sh 743 tree-walk.c 28 tree-walk.h 67 unpack-trees.c 28 unpack-trees.h total 1914
通过使用git-rev-parse,它应该接受所有指定提交范围的常用方法。EDIT:更新以记录累计总数。注意bash在subshell中读取时运行,因此使用了额外的花括号以避免在subshell退出时丢失总数。EDIT:添加了对比较索引和另一个树型索引的支持,使用--cached参数调用git diff-index而不是git diff-tree。例如:
git-rev-parse
--cached
git diff-index
$ git file-size-diff --cached master -570 Makefile -134 git-gui.sh -1 lib/browser.tcl 931 lib/commit.tcl 18 lib/index.tcl total 244
EDIT:将脚本标记为可以在git仓库的子目录中运行。
xmjla07d2#
你可以用管子把...
git show some-ref:some-path-to-file | wc -c git show some-other-ref:some-path-to-file | wc -c
并比较这两个数字。
dojqjjoe3#
我做了一个bash脚本来比较分支/提交等实际文件/内容大小。它可以在https://github.com/matthiaskrgr/gitdiffbinstat找到,也可以检测文件重命名。
gwbalxhn4#
在matthiaskrgr's answer上扩展,https://github.com/matthiaskrgr/gitdiffbinstat可以像其他脚本一样使用:
gitdiffbinstat.sh HEAD..HEAD~4
Imo它确实工作得很好,比这里发布的任何其他东西都快得多。示例输出:
$ gitdiffbinstat.sh HEAD~6..HEAD~7 HEAD~6..HEAD~7 704a8b56161d8c69bfaf0c3e6be27a68f27453a6..40a8563d082143d81e622c675de1ea46db706f22 Recursively getting stat for path "./c/data/gitrepo" from repo root...... 105 files changed in total 3 text files changed, 16 insertions(+), 16 deletions(-) => [±0 lines] 102 binary files changed 40374331 b (38 Mb) -> 39000258 b (37 Mb) => [-1374073 b (-1 Mb)] 0 binary files added, 3 binary files removed, 99 binary files modified => [-3 files] 0 b added in new files, 777588 b (759 kb) removed => [-777588 b (-759 kb)] file modifications: 39596743 b (37 Mb) -> 39000258 b (37 Mb) => [-596485 b (-582 kb)] / ==> [-1374073 b (-1 Mb)]
输出目录中有./c/data...,因为/c实际上是文件系统根目录。
cbeh67ev5#
脚本注解:git-file-size-diff,由patthoyts建议。这个脚本非常有用,但是,我发现了两个问题:1.当有人改变文件的权限时,git返回一个另外一种类型的case语句:
T) echo >&2 "Skipping change of type" continue ;;
1.如果sha-1值不再存在(出于某种原因),脚本就会崩溃。在获取文件大小之前,需要验证sha:$(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi完整的case语句将如下所示:
$(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi
case $M in M) $(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi $(git cat-file -e $C) if [ "$?" = 1 ]; then continue; fi bytes=$(( $(git cat-file -s $D) - $(git cat-file -s $C) )) ;; A) $(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi bytes=$(git cat-file -s $D) ;; D) $(git cat-file -e $C) if [ "$?" = 1 ]; then continue; fi bytes=-$(git cat-file -s $C) ;; T) echo >&2 "Skipping change of type" continue ;; *) echo >&2 warning: unhandled mode $M in \"$A $B $C $D $M $P\" continue ;; esac
5条答案
按热度按时间ef1yzkbh1#
git cat-file -s
会输出git中对象的字节大小。git diff-tree
可以告诉你一棵树和另一棵树之间的区别。将这些放在PATH中的一个名为
git-file-size-diff
的脚本中,这样就可以调用git file-size-diff <tree-ish> <tree-ish>
。在使用中,这看起来如下所示:
通过使用
git-rev-parse
,它应该接受所有指定提交范围的常用方法。EDIT:更新以记录累计总数。注意bash在subshell中读取时运行,因此使用了额外的花括号以避免在subshell退出时丢失总数。
EDIT:添加了对比较索引和另一个树型索引的支持,使用
--cached
参数调用git diff-index
而不是git diff-tree
。例如:EDIT:将脚本标记为可以在git仓库的子目录中运行。
xmjla07d2#
你可以用管子把...
并比较这两个数字。
dojqjjoe3#
我做了一个bash脚本来比较分支/提交等实际文件/内容大小。它可以在https://github.com/matthiaskrgr/gitdiffbinstat找到,也可以检测文件重命名。
gwbalxhn4#
在matthiaskrgr's answer上扩展,https://github.com/matthiaskrgr/gitdiffbinstat可以像其他脚本一样使用:
Imo它确实工作得很好,比这里发布的任何其他东西都快得多。示例输出:
输出目录中有./c/data...,因为/c实际上是文件系统根目录。
cbeh67ev5#
脚本注解:git-file-size-diff,由patthoyts建议。这个脚本非常有用,但是,我发现了两个问题:
1.当有人改变文件的权限时,git返回一个另外一种类型的case语句:
1.如果sha-1值不再存在(出于某种原因),脚本就会崩溃。在获取文件大小之前,需要验证sha:
$(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi
完整的case语句将如下所示: