看看这个:
$ mkdir test
$ cd test/
test$ git init
Leeres Git-Repository in test/.git/ initialisiert
test$ head -c 1G </dev/urandom >hugefile.bin
test$ du -sh .
1,1G .
test$ git add hugefile.bin
test$ du -sh .
2,1G .
test$ git reset hugefile.bin
test$ du -sh .
2,1G .
test$ git gc --prune=now
Nothing new to pack.
test$ du -sh .
2,1G .
hugefile.bin
那么我该怎么做才能从我的.git
目录中删除明显仍然存在的垃圾信息?