]> git.ipfire.org Git - thirdparty/git.git/commit
environment: make `get_index_file()` accept a repository
authorPatrick Steinhardt <ps@pks.im>
Thu, 12 Sep 2024 11:29:32 +0000 (13:29 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 12 Sep 2024 17:15:39 +0000 (10:15 -0700)
commit1dc4ec2102971ee5d19331a8ccf09939272bc6ca
tree3e99eab7d74de2d6bd07417fdedc74229fd9f76c
parenta3673f48986cf990006e56a57e4ad3c7134161e7
environment: make `get_index_file()` accept a repository

The `get_index_file()` function retrieves the path to the index file
of `the_repository`. Make it accept a `struct repository` such that it
can work on arbitrary repositories and make it part of the repository
subsystem. This reduces our reliance on `the_repository` and clarifies
scope.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/am.c
builtin/commit.c
builtin/merge.c
builtin/stash.c
builtin/update-index.c
builtin/write-tree.c
environment.c
environment.h
repository.c
repository.h
wt-status.c