This command will find the largest file from the output of git ls-files
which outputs the path to each of the files stored in git below your
current directory.
git ls-files | xargs wc --bytes | sed \$d | sort -rn
This command will find the largest file from the output of git ls-files
which outputs the path to each of the files stored in git below your
current directory.
git ls-files | xargs wc --bytes | sed \$d | sort -rn