Staging
v0.5.1
Revision 5738c9c21e53356ab5020912116e7f82fd2d428f authored by Junio C Hamano on 12 September 2011, 17:44:32 UTC, committed by Junio C Hamano on 12 September 2011, 17:44:32 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 81a5bdd
Raw File
test-subprocess.c
#include "cache.h"
#include "run-command.h"

int main(int argc, char **argv)
{
	struct child_process cp;
	int nogit = 0;

	setup_git_directory_gently(&nogit);
	if (nogit)
		die("No git repo found");
	if (!strcmp(argv[1], "--setup-work-tree")) {
		setup_work_tree();
		argv++;
	}
	memset(&cp, 0, sizeof(cp));
	cp.git_cmd = 1;
	cp.argv = (const char **)argv+1;
	return run_command(&cp);
}
back to top