From 47586b8dc85e23b14976c2e1cc4cfcdff02fbc44 Mon Sep 17 00:00:00 2001 From: Fujii Hironori Date: Mon, 7 Apr 2025 06:47:06 +0900 Subject: [PATCH] Downgrade Git to 2.47.1.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We observed random schannel errors with git 4.49. > fatal: unable to access 'https://github.com/WebKit/WebKit.git/': schannel: server closed abruptly (missing close_notify) Git for Windows 2.48 and 2.49 has an issue. git clone - 2.49.0.1 - schannel: failed to receive handshake, SSL/TLS connection failed · Issue #5529 · git-for-windows/git https://github.com/git-for-windows/git/issues/5529 --- scm/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm/Dockerfile b/scm/Dockerfile index ad6287a..74aceac 100644 --- a/scm/Dockerfile +++ b/scm/Dockerfile @@ -9,7 +9,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref # Install Git for Windows x64 CLI #-------------------------------------------------------------------- -ENV GIT_VERSION 2.49.0.1 +ENV GIT_VERSION 2.47.1.2 RUN Install-Git -Version $env:GIT_VERSION;