From f8bc96abf81930b17ac7beaec298234ec09840ba Mon Sep 17 00:00:00 2001 From: Brian Camacho Date: Mon, 11 Mar 2024 10:23:17 -0700 Subject: [PATCH] todo: actual smudge --- src/libfetchers/git-utils.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libfetchers/git-utils.cc b/src/libfetchers/git-utils.cc index ee411cb61..8eefb1082 100644 --- a/src/libfetchers/git-utils.cc +++ b/src/libfetchers/git-utils.cc @@ -510,6 +510,7 @@ struct GitInputAccessor : InputAccessor { auto blob = getBlob(path, symlink); + // read filters here, perform smudge auto data = std::string_view((const char *) git_blob_rawcontent(blob.get()), git_blob_rawsize(blob.get())); return std::string(data);