From 5b076e00ce138ab4a81f0951dc23b82f015f011e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Thu, 26 Oct 2023 20:16:07 +0200 Subject: [PATCH] [rubygems/rubygems] Fix regression on old git versions https://github.com/rubygems/rubygems/commit/abd91ca2e5 --- lib/bundler/source/git/git_proxy.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb index 93625145c4845c..0b507abc7621df 100644 --- a/lib/bundler/source/git/git_proxy.rb +++ b/lib/bundler/source/git/git_proxy.rb @@ -131,7 +131,11 @@ def copy_to(destination, submodules = false) end ref = @commit_ref || (locked_to_full_sha? && @revision) - git "fetch", "--force", "--quiet", *extra_fetch_args(ref), :dir => destination if ref + if ref + git "config", "uploadpack.allowAnySHA1InWant", "true", :dir => path.to_s if @commit_ref.nil? && needs_allow_any_sha1_in_want? + + git "fetch", "--force", "--quiet", *extra_fetch_args(ref), :dir => destination + end git "reset", "--hard", @revision, :dir => destination @@ -434,6 +438,10 @@ def supports_minus_c? @supports_minus_c ||= Gem::Version.new(version) >= Gem::Version.new("1.8.5") end + def needs_allow_any_sha1_in_want? + @needs_allow_any_sha1_in_want ||= Gem::Version.new(version) <= Gem::Version.new("2.13.7") + end + def supports_fetching_unreachable_refs? @supports_fetching_unreachable_refs ||= Gem::Version.new(version) >= Gem::Version.new("2.5.0") end