dot dot dotfiles

update url for git-big-script

+1 -1
+1 -1
system/git-big-script.bash
··· 1 - # https://blog.ostermiller.org/git-remove-from-history 1 + # https://blog.ostermiller.org/removing-and-purging-files-from-git-history/ 2 2 # This command lists largest 20 files in git history of *main* branch 3 3 git rev-list main | while read rev; do git ls-tree -lr $rev | cut -c54- | sed -r 's/^ +//g;'; done | sort -u | perl -e 'while (<>) { chomp; @stuff=split("\t");$sums{$stuff[1]} += $stuff[0];} print "$sums{$_} $_\n" for (keys %sums);' | sort -rn | head -n 20