Files
svr/usr/bin/git_list_heavy
2026-01-23 08:55:18 +01:00

12 lines
253 B
Bash
Executable File

#!/bin/bash
git_list_heavy ()
{
for B in $(git_list_heavy_commits | cut -d' ' -f1);
do
git rev-list --all | while read commit; do
git ls-tree -rl $commit;
done | grep --color=auto $B;
done
}
git_list_heavy "$@"