]> git.ipfire.org Git - thirdparty/git.git/commit
builtin/fmt-merge-msg: stop depending on 'the_repository'
authorAyush Chandekar <ayu.chandekar@gmail.com>
Sun, 10 Aug 2025 23:45:46 +0000 (05:15 +0530)
committerJunio C Hamano <gitster@pobox.com>
Mon, 11 Aug 2025 16:19:40 +0000 (09:19 -0700)
commit22d421fed9cd5757a9da5a97e5b53ded54e93fe9
tree68aba5cc02f0c2196c202de2924fd386e80828a0
parent9a49aef8dcdf899e94cddab14eacc7118c611524
builtin/fmt-merge-msg: stop depending on 'the_repository'

Refactor builtin/fmt-merge-msg.c to remove the dependancy on the global
'the_repository'. Remove the 'UNUSED' macro from the 'struct repository'
parameter and replace 'git_config()' with 'repo_config()' so that
configuration is read from the passed repository. Also, add a test to
make sure that "git fmt-merge-msg -h" can be called outside a
repository.

Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Ghanshyam Thakkar <shyamthakkar001@gmail.com>
Signed-off-by: Ayush Chandekar <ayu.chandekar@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fmt-merge-msg.c
t/t1517-outside-repo.sh