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:
authorToon Claes <toon@gitlab.com>2022-12-01 14:17:38 +0300
committerToon Claes <toon@gitlab.com>2022-12-02 11:00:44 +0300
commit4277366cf171fd31a8939e36067fec11b105d367 (patch)
treeff6e497bbf019fba0579f8311c1b8a71e51cb335 /Makefile
parent6e1b7d75824f07b89fb0ffa4f31f03ee5062b143 (diff)
Makefile: Bump default git version to 2.38
In the previous commit we started to use git 2.38 all the time when using bundled git. This change bumps the non-bundled git version to also default to 2.38, unless the user specifies otherwise.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92d59c158..1a0020319 100644
--- a/Makefile
+++ b/Makefile
@@ -146,7 +146,7 @@ SKIP_OVERRIDING_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.37.1.gl1
+ override GIT_VERSION := v2.38.1.gl0
else
# Support both vX.Y.Z and X.Y.Z version patterns, since callers across GitLab
# use both.