class Renuo::Cli::Commands::ListLargeGitFiles
Public Instance Methods
Source
# File lib/renuo/cli/commands/list_large_git_files.rb, line 14 def run cmd = 'bash -c "join -o \'1.1 1.2 2.3\' <(git rev-list --objects --all | sort) ' \ '<(git verify-pack -v objects/pack/*.idx | sort -k3 -n | tail -5 | sort) | sort -k3 -n"' puts `#{cmd}` end