`git add hugefile.bin` 之后 .git 文件夹中的可用空间

`git add hugefile.bin` 之后 .git 文件夹中的可用空间

看看这个:

$ 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目录中删除明显仍然存在的垃圾信息?

相关内容