de61cebde7
* jk/common-main-2.8: mingw: declare main()'s argv as const common-main: call git_setup_gettext() common-main: call restore_sigpipe_to_default() common-main: call sanitize_stdfds() common-main: call git_extract_argv0_path() add an extra level of indirection to main()
20 lines
403 B
C
20 lines
403 B
C
#include "cache.h"
|
|
#include "run-command.h"
|
|
|
|
int cmd_main(int argc, const char **argv)
|
|
{
|
|
struct child_process cp = CHILD_PROCESS_INIT;
|
|
int nogit = 0;
|
|
|
|
setup_git_directory_gently(&nogit);
|
|
if (nogit)
|
|
die("No git repo found");
|
|
if (argc > 1 && !strcmp(argv[1], "--setup-work-tree")) {
|
|
setup_work_tree();
|
|
argv++;
|
|
}
|
|
cp.git_cmd = 1;
|
|
cp.argv = (const char **)argv + 1;
|
|
return run_command(&cp);
|
|
}
|