From 8ca850eb59ca4d27fc2cd66bea593080fad1ef21 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 7db9c5bbfe03df..daec7a4d08ed18 100644 --- a/scalar.c +++ b/scalar.c @@ -170,7 +170,7 @@ static int set_recommended_config(int reconfigure) { "core.autoCRLF", "false" }, { "core.safeCRLF", "false" }, { "fetch.showForcedUpdates", "false" }, - { "push.usePathWalk", "true" }, + { "pack.usePathWalk", "true" }, { NULL, NULL }, }; int i;