Open
Description
git-hg stores the same objects under both .git/objects
and .git/hgremote/objects
, wasting space by 2x. A workaround is to share objects:
$ du -sh
2.1G .
$ echo ../hgremote/objects/ >> .git/objects/info/alternates
$ git repack -a -d -l
$ git gc --prune=all
$ du -sh
1.1G .
Metadata
Metadata
Assignees
Labels
No labels