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>2023-07-04 15:22:59 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-07-04 15:22:59 +0300
commit3808a0b3ea80d8e991e4ac5ac2c5de2d5102649d (patch)
treeef79f5b568ad7ab77d95ca041cea8ec32ca604fe /Makefile
parent4291052b1d9d0352887f6ddf121fff9e7625752b (diff)
git: Update to Git v2.41.0.gl1
We have recently upstreamed a new `-Z` option for git-cat-objects(1) that will cause it to NUL-terminate its output. This is required so that it becomes possible to request revisions from it that contain embedded newlines while using one of the `--batch` modes. We have backported this patch series into Git v2.41.0.gl1, so let's upgrade to that version so that we can start using this option.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 24ba59c41..6c8f82532 100644
--- a/Makefile
+++ b/Makefile
@@ -131,7 +131,7 @@ GIT_VERSION ?=
## The Git version used for bundled Git v2.40.
GIT_VERSION_2_40 ?= v2.40.1.gl2
## The Git version used for bundled Git v2.41.
-GIT_VERSION_2_41 ?= v2.41.0
+GIT_VERSION_2_41 ?= v2.41.0.gl1
## Skip overriding the Git version and instead use the Git version as specified
## in the Git sources. This is required when building Git from a version that