Staging
v0.5.1
https://github.com/git/git
Revision 66c11f02b031aca6f1756086fefdf4b8a5575c56 authored by Junio C Hamano on 14 December 2011, 05:55:31 UTC, committed by Junio C Hamano on 14 December 2011, 05:55:31 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c0eb9cc
Raw File
Tip revision: 66c11f02b031aca6f1756086fefdf4b8a5575c56 authored by Junio C Hamano on 14 December 2011, 05:55:31 UTC
Git 1.7.7.5
Tip revision: 66c11f0
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