I'm cloning many third-party projects' git repo under a "Third-party Software" subdirectory in my workspace, however I don't want to keep any history from them(the latest snapshot will do); also I'm sharing many same submodules in many project in separate repositories(like clean filter, pre-commit scripts...etc.) and don't want to keep history in any of them.
Here's two similar but slightly different questions:
- Is there any command to make these git repositories to drop all history snapshots?
- Is there any git config (or other method) to force git repositories/submodules to only keep the latest snapshot after every future pull/submodule update?
Thank you.
You can run
git fetch
with--depth
to convert an existing (non-shallow) repository to a shallow repository of the given depth. You might also want to prune away all but one branch name (one local branch, and one corresponding remote-tracking branch), and change thefetch =
directive to match. If there are tags, you might want to prune some or all of those as well. Any references you keep will retain commits and their referenced objects.That's fine for a regular repository, but as VonC noted in his answer to Git shallow submodules and ad22 mentioned in a comment:
If you control the servers, and have a new enough Git, you can enable fetch-by-hash-ID which will allow the submodules' hash IDs to be fetched directly, which will work around that as well. If not—if you don't control the servers or your Git is not that new—you will find submodules earning their "sob-modules" nickname yet again.