Feature #8939

Check what still takes room in the rewritten Git repo

Added by intrigeri 2015-02-22 19:01:59 . Updated 2015-03-22 12:06:40 .

Status:
Resolved
Priority:
Normal
Assignee:
intrigeri
Category:
Infrastructure
Target version:
Start date:
2015-02-22
Due date:
% Done:

100%

Feature Branch:
Type of work:
Research
Blueprint:

Starter:
Affected tool:
Deliverable for:

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.

#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