web-dev-qa-db-ja.com

Git:2つのコミット間の合計ファイルサイズの違いを表示しますか?

2つのコミット間の合計ファイルサイズの違いを表示することは可能ですか?何かのようなもの:

$ git file-size-diff 7f3219 bad418 # I wish this worked :)
-1234 bytes

私はもう試した:

$ git diff --patch-with-stat

そして、それは、差分の各binaryファイルのファイルサイズの違いを示していますが、テキストファイルの合計サイズの違いではありません。

何か案は?

69
Mathias Bynens

git cat-file -sは、gitでオブジェクトのサイズをバイト単位で出力します。 git diff-treeは、あるツリーと別のツリーの違いを知ることができます。

これをPATHのどこかにある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.'

. "$(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を使用することにより、コミット範囲を指定する通常の方法をすべて受け入れる必要があります。

編集:累積合計を記録するために更新されました。 bashはサブシェルで読み取られている間に実行されるため、サブシェルが終了したときに合計が失われないように中括弧を追加することに注意してください。

編集:--cachedの代わりにgit diff-index引数を使用してgit diff-treeを呼び出すことにより、インデックスを別のツリーと比較するサポートを追加しました。例えば:

$ 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
81
patthoyts

パイプを出すことができます

git show some-ref:some-path-to-file | wc -c
git show some-other-ref:some-path-to-file | wc -c

2つの数値を比較します。

18
Adam Dymitruk

実際のファイル/コンテンツサイズごとにブランチ/コミットなどを比較するために、bashスクリプトを作成しました。 https://github.com/matthiaskrgr/gitdiffbinstat にあり、ファイル名の変更も検出します。

3
matthiaskrgr

matthiaskrgrの答え を展開すると、 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は実際にはファイルシステムルートであるため、出力ディレクトリは./c/data ...でファンキーです。

3
guest

スクリプトへのコメント:git-file-size-diff、patthoytsによって提案されました。このスクリプトは非常に便利ですが、2つの問題が見つかりました。

  1. 誰かがファイルのパーミッションを変更すると、gitはcaseステートメントで別のタイプを返します。

    _T) echo >&2 "Skipping change of type"
    continue ;;
    _
  2. (何らかの理由で)sha-1値がもう存在しない場合、スクリプトはクラッシュします。ファイルサイズを取得する前にshaを検証する必要があります。

    $(git cat-file -e $D) if [ "$?" = 1 ]; then continue; fi

完全なcaseステートメントは次のようになります。

_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
_
2
Richard Nilsson