From c02fcebb30c431655624c9164e7627810b4535d8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 10 Feb 2025 16:08:03 +0100 Subject: [PATCH] Add release note --- doc/manual/rl-next/git-lfs-support.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/manual/rl-next/git-lfs-support.md diff --git a/doc/manual/rl-next/git-lfs-support.md b/doc/manual/rl-next/git-lfs-support.md new file mode 100644 index 000000000..2990fc76c --- /dev/null +++ b/doc/manual/rl-next/git-lfs-support.md @@ -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)