2010-12-27 04:26:04 +03:00
|
|
|
#include "cache.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
|
2013-04-27 23:19:47 +04:00
|
|
|
int main(int argc, char **argv)
|
2010-12-27 04:26:04 +03:00
|
|
|
{
|
|
|
|
struct child_process cp;
|
|
|
|
int nogit = 0;
|
|
|
|
|
2011-03-22 15:50:08 +03:00
|
|
|
setup_git_directory_gently(&nogit);
|
2010-12-27 04:26:04 +03:00
|
|
|
if (nogit)
|
|
|
|
die("No git repo found");
|
2012-04-10 23:07:34 +04:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "--setup-work-tree")) {
|
2010-12-27 04:26:04 +03:00
|
|
|
setup_work_tree();
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
memset(&cp, 0, sizeof(cp));
|
|
|
|
cp.git_cmd = 1;
|
2013-04-27 23:19:47 +04:00
|
|
|
cp.argv = (const char **)argv + 1;
|
2010-12-27 04:26:04 +03:00
|
|
|
return run_command(&cp);
|
|
|
|
}
|