https://github.com/git/git
Raw File
Tip revision: e02cd6388f0193706279268a7d9fa57be4cbc997 authored by Junio C Hamano on 10 November 2006, 19:53:41 UTC
git-cvsserver: read from git with -z to get non-ASCII pathnames.
Tip revision: e02cd63
exec_cmd.h
#ifndef __GIT_EXEC_CMD_H_
#define __GIT_EXEC_CMD_H_

extern void git_set_exec_path(const char *exec_path);
extern const char* git_exec_path(void);
extern int execv_git_cmd(const char **argv); /* NULL terminated */
extern int execl_git_cmd(const char *cmd, ...);


#endif /* __GIT_EXEC_CMD_H_ */
back to top