Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you reclaim disk space after adding an alternate in git?

I have a git working directory and have added to .git/objects/info/alternates so that this working directory does not need to store duplicate data that's already in another working directory on my machine. (This is what git clone --reference=DIRECTORY does). However, duplicate objects already stored in the working directory aren't deleted from my .git/ directory. This means the .git/ directory stays large.

How do I get rid of the duplicate objects so the .git/ directory is smaller?

like image 371
Russell Silva Avatar asked Apr 05 '11 20:04

Russell Silva


1 Answers

git repack -adl

The -l option in particular omits objects that are borrowed from an alternate. See git help repack and git help pack-objects.

like image 194
Russell Silva Avatar answered Nov 04 '22 06:11

Russell Silva