git:自特定提交后未更改的行数

  • 本文关键字:提交 git git git-diff git-blame
  • 更新时间 :
  • 英文 :


使用强大的命令行fu来查找更改(或更改统计信息)有很多答案,但我想找到相反的答案:自特定提交以来,有多少行(每个文件)没有更改?

我能找到的最接近的是:如何找到自提交以来没有更改的文件?但我想知道有多少行(理想情况下:在每个文件中)保持不变,而不是哪些文件。

所以,基本上:除了插入和删除之外,gitdiff-stat输出的行是否可以保持不变?

或者,我可以想象git ls文件、git责备和一些awk魔法可能会起作用,但我还没能完全弄清楚。——例如,与其用上一次更改的提交编号来标记每一行,我可以得到git指责来指示此更改是在给定提交之前还是之后发生的吗?再加上grep和wc-l,我就能达到目的。

想明白了。关键是git可以指定日期范围(请参阅https://git-scm.com/docs/git-blame,部分";指定范围")。假设123456是我想要比较的提交

git blame 123456..

"自范围边界[…]以来没有改变的线被归咎于该范围边界提交";,也就是说,它将把自提交以来没有改变的一切显示为"^123456";。因此,每个文件,我的问题的答案是

git blame 123456.. $file | grep -P "^^123456" | wc -l # unchanged since
git blame 123456.. $file | grep -Pv "^^123456" | wc -l # new since

包装到bash脚本中以检查repo中的所有文件(git-ls文件)并打印漂亮的:

#!/bin/bash
total_lines=0;
total_lines_unchanged=0;
total_lines_new=0;
echo "--- total unchanged new filename ---"
for file in `git ls-files | 
  <can do some filtering of files here with grep>`
do
  # calculate stats for this file
  lines=`cat $file | wc -l`
  lines_unchanged=`git blame 123456.. $file | grep -P "^^123456" | wc -l`
  lines_new=`git blame 123456.. $file | grep -Pv "^^123456" | wc -l`
  # print pretty
  lines_pretty="$(printf "%6d" $lines)"
  lines_unchanged_pretty="$(printf "%6d" $lines_unchanged)"
  lines_new_pretty="$(printf "%6d" $lines_new)"
  echo "$lines_pretty $lines_unchanged_pretty $lines_new_pretty $file"
  # add to total
  total_lines=$(($total_lines + $lines))
  total_lines_unchanged=$(($total_lines_unchanged + $lines_unchanged))
  total_lines_new=$(($total_lines_new + $lines_new))
done
# print total
echo "--- total unchanged new ---"
lines_pretty="$(printf "%6d" $total_lines)"
lines_unchanged_pretty="$(printf "%6d" $total_lines_unchanged)"
lines_new_pretty="$(printf "%6d" $total_lines_new)"
echo "$lines_pretty $lines_unchanged_pretty $lines_new_pretty TOTAL"

感谢Gregg的回答,这让我更加深入地研究了git责备的选项!

git diff HEAD~ HEAD && echo files that changed
git rev-parse HEAD && echo hash of current rev
wc -l <filename> && echo total lines
git blame <filename> | grep -v -c -e"<first8bytesofhash>"  && echo unchanged lines
git blame <filename> | grep -c -e"<first8bytesofhash>" && echo changed lines

我尝试使用Python:

import commands
s,o=commands.getstatusoutput('git tag start')
s,o=commands.getstatusoutput('git log --pretty=%H --max-parents=0')
roots=o.split()
result=set()
for root in roots:
  s,o=commands.getstatusoutput('git reset root')
  s,o=commands.getstatusoutput('git ls-files')
  all=set(o.split())
  s,o=commands.getstatusoutput('git ls-files --modified')
  modified=set(o.split())
  unchanged=all-modified
  result=result|unchanged
print result
s,o=commands.getstatusoutput('git reset start --hard')
$ wc -l main.c
718 main.c
$ git diff --numstat v2.0.0 main.c
152     70      main.c

自v2.0.0以来,当前main.c的152行被更改或添加,因此566行从那时起没有更改。

lines-unchanged-in-since () {
        set -- $2 `wc -l $1` `git diff --numstat $2 $1` 
        echo $(($2-$4)) lines unchanged in $3 since $1
}

相关内容

  • 没有找到相关文章

最新更新