Staging
v0.5.1
https://github.com/git/git
Revision 765428699a5381f113d19974720bc91b5bfeaf1d authored by Junio C Hamano on 17 March 2016, 17:00:44 UTC, committed by Junio C Hamano on 17 March 2016, 18:23:05 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 32c6dca
Raw File
Tip revision: 765428699a5381f113d19974720bc91b5bfeaf1d authored by Junio C Hamano on 17 March 2016, 17:00:44 UTC
Git 2.4.11
Tip revision: 7654286
test-subprocess.c
#include "cache.h"
#include "run-command.h"

int main(int argc, char **argv)
{
	struct child_process cp = CHILD_PROCESS_INIT;
	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++;
	}
	cp.git_cmd = 1;
	cp.argv = (const char **)argv + 1;
	return run_command(&cp);
}
back to top