How can I search my git logs to see which files have had the most activity?
You would not spot directories or branches containing humongous numbers of small files, for example. So if the script here does not cut it for you (and you have a decently recent version of git), look into git-filter-repo --analyze or git rev-list --disk-usage (examples).
Git file History provides information about the commit history associated with a file. To use it: Go to your project's Repository > Files. In the upper right corner, select History.
To find out which files changed in a given commit, use the git log --raw command.
In Git, we can use git show commit_id --name-only to list all the committed files that are going to push to the remote repository.
that's one of these things that is very easy, accidentally (?):
git rev-list --objects --all | awk '$2' | sort -k2 | uniq -cf1 | sort -rn | head
Output similar to
1058 fffcba193374a85fd6a3490f800c6901218a950b src 715 ffffe0f08798e95b66cc4ad4ff22cf10734d045e src/lib 450 ffcfe596031a5985664e35937fff4ac9ff38dcca src/zfs-fuse 367 ffc5d5340f95360fc9f7b739c5593dd3f92fced0 src/lib/libzpool 202 ff92db000792044d45eec21c57a3cd21618631e7 src/lib/libsolkerncompat 183 ff1a44edae3fd121ddd86864b589e5ab2f9ff99b src/lib/libzfscommon 178 fec6b3a789e578983c2242b3aa5adf217cb8b887 src/lib/libzfs 168 ffeefc9e81222d7c471bdb0911d8b98f23cff050 src/cmd 167 fbd60bd3430765863648c52db7ceb3ffa15d5e50 src/lib/libzfscommon/include 155 ff225f6b41f9557d683079c5f9276f497bcb06bd src/lib/libzfscommon/include/sys
You can take it from here.
git rev-list --objects --all | awk '$2' | sort -k2 | uniq -cf1 | sort -rn | while read frequency sample file do [ "blob" == "$(git cat-file -t $sample)" ] && echo -e "$frequency\t$file"; done
output:
135 src/zfs-fuse/zfs_operations.c 84 src/zfs-fuse/zfs_ioctl.c 79 src/zfs-fuse/zfs_vnops.c 73 src/lib/libzfs/libzfs_dataset.c 67 src/lib/libzpool/spa.c 66 src/zfs-fuse/zfs_vfsops.c 62 src/cmd/zdb/zdb.c 62 CHANGES 60 src/cmd/ztest/ztest.c 60 src/lib/libzpool/arc.c
You can have a ball with the rev-list
part:
git rev-list --after=2011-01-01 --until='two weeks ago' \ tag1...remote/hotfix ^master
Will use only revisions in the specified date range, that are in the symmetric set difference for tag1
and remote/hotfix
and are not in master
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With