[git] Git : 두 커밋 사이의 총 파일 크기 차이를 보여 주나요?

두 커밋 간의 총 파일 크기 차이를 표시 할 수 있습니까? 다음과 같은 것 :

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

난 노력 했어:

$ git diff --patch-with-stat

그리고 이것은 diff의 각 바이너리 파일에 대한 파일 크기 차이를 보여줍니다. 텍스트 파일이 아니라 전체 파일 크기 차이가 아닙니다.

어떤 아이디어?



답변

git cat-file -sgit에서 객체의 크기를 바이트 단위로 출력합니다. git diff-tree한 나무와 다른 나무의 차이점을 알려줄 수 있습니다.

이것을 git-file-size-diffPATH 어딘가에있는 라는 스크립트에 함께 넣으면 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호출 할 인수를 사용하여 인덱스를 다른 tree-ish와 비교하기위한 지원이 추가되었습니다 . 예 :git diff-indexgit 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


답변

당신은 밖으로 파이프 할 수 있습니다

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

두 숫자를 비교합니다.


답변

실제 파일 / 콘텐츠 크기로 분기 / 커밋 등을 비교하는 bash 스크립트를 만들었습니다. https://github.com/matthiaskrgr/gitdiffbinstat 에서 찾을 수 있으며 파일 이름 변경도 감지합니다.


답변

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 …로 펑키합니다.


답변

스크립트에 대한 주석 : git-file-size-diff, patthoyts가 제안했습니다. 스크립트는 매우 유용하지만 두 가지 문제를 발견했습니다.

  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


답변