From 6981c374df41eb9199011c79abee55d4088e82fd Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Thu, 23 Jan 2025 09:16:19 +0000 Subject: [PATCH] scalar.c: add vfs-cache-move task Add the `vfs-cache-move` maintenance task to the list of tasks run by the `scalar run` command. It's often easier for users to run the shorter `scalar run` command than the equivalent `git maintenance` command. Signed-off-by: Matthew John Cheetham --- scalar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/scalar.c b/scalar.c index 92582890c7ceb7..20327950520f04 100644 --- a/scalar.c +++ b/scalar.c @@ -1163,6 +1163,7 @@ static int cmd_run(int argc, const char **argv) { "fetch", "prefetch" }, { "loose-objects", "loose-objects" }, { "pack-files", "incremental-repack" }, + { "vfs-cache-move", "vfs-cache-move" }, { NULL, NULL } }; struct strbuf buf = STRBUF_INIT;