Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-08-05 08:28:53 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-08-05 08:28:53 +0300
commit4e8e6fc81206f73218b976d44156b9bd00f60a1a (patch)
tree636d90275a2349495a6145bac3fd5d9cf412b158
parentb731241d770f8cd1e8b81f48d8a011f0383b4b48 (diff)
git: Upgrade default Git distribution to v2.37.1.gl1
Now that we have default-enabled bundled Git v2.37.1.gl1 we can also switch our default Git distribution to that newer Git version. Do so. Changelog: changed
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b2531fa4f..39a7609d4 100644
--- a/Makefile
+++ b/Makefile
@@ -153,7 +153,7 @@ GIT_VERSION ?=
# The default version is used in case the caller does not set the variable or
# if it is either set to the empty string or "default".
ifeq (${GIT_VERSION:default=},)
- override GIT_VERSION := v2.35.1
+ override GIT_VERSION := v2.37.1
# This extra version has two intentions: first, it allows us to detect
# capabilities of the command at runtime. Second, it helps admins to
@@ -166,7 +166,7 @@ ifeq (${GIT_VERSION:default=},)
# Before adding custom patches, please read doc/PROCESS.md#Patching-git
# first to make sure your patches meet our acceptance criteria. Patches
# must be put into `_support/git-patches`.
- GIT_PATCHES := $(sort $(wildcard ${SOURCE_DIR}/_support/git-patches/v2.35.1.gl1/*))
+ GIT_PATCHES := $(sort $(wildcard ${SOURCE_DIR}/_support/git-patches/v2.37.1.gl1/*))
else
# Support both vX.Y.Z and X.Y.Z version patterns, since callers across GitLab
# use both.