From: Pauli V. <pa...@ik...> - 2011-01-26 10:28:58
|
Wed, 26 Jan 2011 13:37:59 +0900, Jae-Joon Lee wrote: [clip] > I spend an hour to figure out how we can delete these unreachable > objects. But it turned out that the answer seems to be simple. > > $ git repack -ad The complete magic stanza is: git reflog expire --expire=0 --all git prune git repack -f -a -d git gc --prune=0 |