aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.c
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2026-06-17 21:44:45 +0200
committerChristian Hesse <mail@eworm.de>2026-06-30 12:38:20 +0200
commit932dc064573a62e195956881f9a5282192ba9525 (patch)
treea2a9a96998a3a9798a0ed825534560aeebb12c4a /cgit.c
parent044821677c774cd24f25f1818ea51d09cc64b006 (diff)
downloadcgit-932dc064573a62e195956881f9a5282192ba9525.tar.gz
cgit-932dc064573a62e195956881f9a5282192ba9525.tar.bz2
cgit-932dc064573a62e195956881f9a5282192ba9525.zip
git: update to v2.55.0ch/git-2-55
Update to git version v2.55.0, this requires a change for this upstream commit: * a80a8e3ea6a070185840219778df24db832899f6 setup: stop using `the_repository` in `setup_git_directory_gently()` * ffe8005b9d8e0cf1b5d5d796ca4da76fbe219011 t: detect errors outside of test cases Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index ca318e8..3b9d3aa 100644
--- a/cgit.c
+++ b/cgit.c
@@ -588,7 +588,7 @@ static void prepare_repo_env(int *nongit)
/* Setup the git directory and initialize the notes system. Both of these
* load local configuration from the git repository, so we do them both while
* the HOME variables are unset. */
- setup_git_directory_gently(nongit);
+ setup_git_directory_gently(the_repository, nongit);
load_display_notes(NULL);
}