From fb280a92330c3d2195fdc520b2482cdae23e2e7c Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 21 Oct 2024 18:37:20 +0200 Subject: [PATCH] fixup! scalar: enable path-walk during push via config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a typo in the configuration Scalar registers, which was missed by author and reviewer 🤦. No big harm done, let's just fix this in time for the next Git for Windows version. Signed-off-by: Johannes Schindelin --- scalar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scalar.c b/scalar.c index a11070abc30edc..92582890c7ceb7 100644 --- a/scalar.c +++ b/scalar.c @@ -193,7 +193,7 @@ static int set_recommended_config(int reconfigure) { "core.autoCRLF", "false" }, { "core.safeCRLF", "false" }, { "fetch.showForcedUpdates", "false" }, - { "push.usePathWalk", "true" }, + { "pack.usePathWalk", "true" }, { "core.configWriteLockTimeoutMS", "150" }, { NULL, NULL }, };