Feature #8939
Check what still takes room in the rewritten Git repo
Status:
Resolved
Priority:
Normal
Assignee:
intrigeri
Category:
Infrastructure
Target version:
Start date:
2015-02-22
Due date:
% Done:
100%
Description
Subtasks
History
#1 Updated by Tails 2015-02-22 19:50:15
- Status changed from Confirmed to Resolved
- % Done changed from 0 to 100
Applied in changeset commit:4a9be77fbff5b8e14331a17cb7042b3bce7c8943.
#2 Updated by intrigeri 2015-02-22 19:51:05
Done on the blueprint: https://tails.boum.org/blueprint/rewrite_Git_history/#todo-process
#3 Updated by intrigeri 2015-02-22 19:59:09
FTR I used:
git rev-list --all --objects | \
sed -n $(git rev-list --objects --all | \
cut -f1 -d' ' | \
git cat-file --batch-check | \
/bin/grep blob | \
sort -n -k 3 | \
tail -n200 | \
while read hash type size; do
echo -n "-e s/$hash/$size/p ";
done) | \
sort -n -k1 | tac | less
#4 Updated by BitingBird 2015-03-22 12:06:41
- Target version changed from Tails_1.3.2 to Tails_1.3.1