1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

Merge pull request #10153 from b-camacho/lfs

git-lfs support
This commit is contained in:
Robert Hensing 2025-02-13 14:25:30 +01:00 committed by GitHub
commit 693a38ae2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 780 additions and 45 deletions

View file

@ -0,0 +1,11 @@
---
synopsis: "Git LFS support"
prs: [10153]
---
The Git fetcher now supports Large File Storage (LFS). This can be enabled by passing the attribute `lfs = true` to the fetcher, e.g.
```console
nix flake prefetch 'git+ssh://git@github.com/Apress/repo-with-large-file-storage.git?lfs=1'
```
Author: [**@b-camacho**](https://github.com/b-camacho), [**@kip93**](https://github.com/kip93)