In order to reduce the size of an archived (in the sense that the author doesn't cared much about the history of the repo, but it's preferred if we can retain it) Git repository, if I delete .pack files from it, what will be the issues which I might face in future?
Asked
Active
Viewed 35 times
1 Answers
2
You won't get the history indeed, since the pack files are commits packed (delta compressed), plus their .idx
index files, now faster with 2.25.
That means a simple git archive would be enough to capture the current state of the repo (without history) in a much small file.

VonC
- 1,262,500
- 529
- 4,410
- 5,250