Changes between Initial Version and Version 1 of Ticket #16857, comment 18
- Timestamp:
- 2018-10-25T21:20:57+02:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16857, comment 18
initial v1 111 111 112 112 The sum of the size of all JAR files is currently 958.065.271 Bytes in the git mirror. A few kilobytes are the plugin test files, but the remaining files can safely be externalized using git LFS in my opinion. 113 114 This is what I used to get the list: 115 {{{ git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | sed -n 's/^blob //p' | sort --numeric-sort --key=2 --reverse | cut -c 1-12,41- | grep "\\.jar" }}}