https://github.com/git/git
Revision acb39f64c6f5f0a3220da787fda9badad9f57554 authored by Junio C Hamano on 13 February 2007, 07:21:34 UTC, committed by Junio C Hamano on 13 February 2007, 07:22:07 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 25b51e2
Raw File
Tip revision: acb39f64c6f5f0a3220da787fda9badad9f57554 authored by Junio C Hamano on 13 February 2007, 07:21:34 UTC
for-each-reflog: not having $GIT_DIR/logs directory is not an error.
Tip revision: acb39f6
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