Merge tag 'gitgui-0.19.0' of http://repo.or.cz/r/git-gui
[alt-git.git] / test-subprocess.c
blob93525eb7be48eb11c242200827a7f6f0706ee241
1 #include "cache.h"
2 #include "run-command.h"
4 int main(int argc, char **argv)
6 struct child_process cp;
7 int nogit = 0;
9 setup_git_directory_gently(&nogit);
10 if (nogit)
11 die("No git repo found");
12 if (argc > 1 && !strcmp(argv[1], "--setup-work-tree")) {
13 setup_work_tree();
14 argv++;
16 memset(&cp, 0, sizeof(cp));
17 cp.git_cmd = 1;
18 cp.argv = (const char **)argv + 1;
19 return run_command(&cp);