https://github.com/git/git
Revision a6605d76cdad37ed3c55a7be4d2e0af0f4721bb2 authored by Junio C Hamano on 01 June 2011, 21:11:17 UTC, committed by Junio C Hamano on 01 June 2011, 21:11:17 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s 090a1a5 + e5af0de
Raw File
Tip revision: a6605d76cdad37ed3c55a7be4d2e0af0f4721bb2 authored by Junio C Hamano on 01 June 2011, 21:11:17 UTC
Sync with 1.7.5.4
Tip revision: a6605d7
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