From d9258969047a53bcb437b4ebd9467e6c95d715d7 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 2 Jun 2023 21:42:20 +0200 Subject: [PATCH] Keep track of core.alternateRefsCommand --- src/plumbing/progress.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plumbing/progress.rs b/src/plumbing/progress.rs index 71ee94028d1..50f917c17d7 100644 --- a/src/plumbing/progress.rs +++ b/src/plumbing/progress.rs @@ -116,6 +116,10 @@ static GIT_CONFIG: &[Record] = &[ config: "core.packedGitLimit", usage: NotApplicable { reason: "we target 32bit systems only and don't use a windowing mechanism" } }, + Record { + config: "core.alternateRefsCommand", + usage: NotPlanned { reason: "there is no need as we can perform the required operation in-binary. This could happen though if there is a use-case and demand." } + }, Record { config: "core.checkRoundtripEncoding", usage: Planned { note: Some("needed once working-tree-encoding attributes are supported") }