I'm looking to archive a git repository to a regular file server for a client.
Previously I've used git bundle create [path] --all
to do this and it's worked well.
However this repository is using Git LFS, and the LFS files aren't included in the bundle created using the above command.
- How can I easily export all commits, branches and history for the repository, including LFS files?
- Is this possible with LFS?
git lfs fetch --all
or similar before creating the bundle? If that doesn't work, let me know and I'll add a bounty to this question. – Cirrus