https://github.com/git/git
Revision 27dca07fb77f6f5851e3a8de54f86c803358caa4 authored by Uwe Kleine-König on 23 January 2007, 08:20:17 UTC, committed by Junio C Hamano on 25 January 2007, 00:12:15 UTC
Just some option name disambiguation.  This is the counter part to
commit d23842fd which made a similar change for push and send-pack.

--exec continues to work.

Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 497171e
Raw File
Tip revision: 27dca07fb77f6f5851e3a8de54f86c803358caa4 authored by Uwe Kleine-König on 23 January 2007, 08:20:17 UTC
rename --exec to --upload-pack for fetch-pack and peek-remote
Tip revision: 27dca07
run-command.h
#ifndef RUN_COMMAND_H
#define RUN_COMMAND_H

#define MAX_RUN_COMMAND_ARGS 256
enum {
	ERR_RUN_COMMAND_FORK = 10000,
	ERR_RUN_COMMAND_EXEC,
	ERR_RUN_COMMAND_WAITPID,
	ERR_RUN_COMMAND_WAITPID_WRONG_PID,
	ERR_RUN_COMMAND_WAITPID_SIGNAL,
	ERR_RUN_COMMAND_WAITPID_NOEXIT,
};

#define RUN_COMMAND_NO_STDIN 1
#define RUN_GIT_CMD	     2	/*If this is to be git sub-command */
#define RUN_COMMAND_STDOUT_TO_STDERR 4
int run_command_v_opt(const char **argv, int opt);
int run_command_v(const char **argv);
int run_command_opt(int opt, const char *cmd, ...);
int run_command(const char *cmd, ...);

#endif
back to top