gpt4 book ai didi

git - 如何使用 git 提供字数统计图?

转载 作者:太空狗 更新时间:2023-10-29 14:28:21 27 4
gpt4 key购买 nike

我正在写一篇很长的散文,想使用 git 来跟踪字数。 (不是提交图,有据可查。)

如何绘制字数与时间(或字数与提交)的图表?

最佳答案

据我所知,git 没有字数统计功能,更不用说绘制字数统计图了。但是,您可以结合使用 git 和其他工具来做到这一点。

例如,这将为每个更改 file.txt 文件的提交输出字数:

git rev-list HEAD -- file.txt |
while read c; do git show "$c:file.txt" | wc -w; done

这将输出相同的内容以及提交时间戳:

git rev-list --timestamp HEAD -- file.txt |
while read t c; do echo -n "$t "; git show "$c:file.txt" | wc -w; done

您可以将此输出提供给 gnuplot,或将其粘贴到 openofice.org Calc 中以绘制图形。

关于git - 如何使用 git 提供字数统计图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17066300/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com