Staging
v0.5.1
Revision 425df881e08bed7a8fcc9a23f452cff792f9ec6c authored by Junio C Hamano on 13 August 2013, 18:10:18 UTC, committed by Junio C Hamano on 13 August 2013, 18:10:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent eaaec50
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 (argc > 1 && !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