Files
git/t/helper/test-subprocess.c
Patrick Steinhardt a80a8e3ea6 setup: stop using the_repository in setup_git_directory_gently()
Stop using `the_repository` in `setup_git_directory_gently()` and
instead accept the repository as a parameter. The injection of
`the_repository` is thus bumped one level higher, where callers now pass
it in explicitly.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2026-05-19 19:36:24 +09:00

23 lines
514 B
C

#define USE_THE_REPOSITORY_VARIABLE
#include "test-tool.h"
#include "run-command.h"
#include "setup.h"
int cmd__subprocess(int argc, const char **argv)
{
struct child_process cp = CHILD_PROCESS_INIT;
int nogit = 0;
setup_git_directory_gently(the_repository, &nogit);
if (nogit)
die("No git repo found");
if (argc > 1 && !strcmp(argv[1], "--setup-work-tree")) {
setup_work_tree(the_repository);
argv++;
}
cp.git_cmd = 1;
strvec_pushv(&cp.args, (const char **)argv + 1);
return run_command(&cp);
}