mirror of
https://github.com/git-for-windows/git.git
synced 2026-06-17 16:45:52 -05:00
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>
23 lines
514 B
C
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);
|
|
}
|