git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git gc == git garbage-create from removed branch
@ 2012-05-03 18:38 Hallvard Breien Furuseth
  2012-05-04  7:37 ` Andreas Ericsson
  0 siblings, 1 reply; 3+ messages in thread
From: Hallvard Breien Furuseth @ 2012-05-03 18:38 UTC (permalink / raw)
  To: git

After removing a branch, 'git gc' explodes all objects
which were only in that branch.  Git filled up my disk that
way when I had cherry-picked from a big remote repo and then
did git remote rm.  Tested with Git 1.7.10.1 and 1.7.1.

$ git clone --bare --branch linux-overhaul-20010122 \
	git://git.savannah.gnu.org/config.git
...
Receiving objects: 100% (3263/3263), 517.15 KiB | 295 KiB/s, done.
...
$ cd config.git/
$ git tag -d `git tag`
...
$ git branch -D master
$ git gc
Counting objects: 1183, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (751/751), done.
Writing objects: 100% (1183/1183), done.
Total 1183 (delta 457), reused 1113 (delta 393)

$ find objects/?? -type f -print | wc -l
2080

$ git reflog expire --expire=now; git gc --prune=now
Counting objects: 1183, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (687/687), done.
Writing objects: 100% (1183/1183), done.
Total 1183 (delta 457), reused 1183 (delta 457)

$ ls objects/
info/  pack/

3263 fetched objects == 2080 loose objects before prune +
HEAD's 1183 objects.

-- 
Hallvard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-04  8:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 18:38 git gc == git garbage-create from removed branch Hallvard Breien Furuseth
2012-05-04  7:37 ` Andreas Ericsson
2012-05-04  8:58   ` Hallvard Breien Furuseth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).