Staging
v0.5.2
https://github.com/git/git
Revision 141d21b8256ef96bbd693fd35e154787365e26dc authored by Junio C Hamano on 12 January 2007, 00:48:28 UTC, committed by Junio C Hamano on 12 January 2007, 00:48:28 UTC
* ar/merge-recursive:
  merge-recursive: do not use on-file index when not needed.
  Speed-up recursive by flushing index only once for all entries
2 parent s c388761 + 8b944b5
Raw File
Tip revision: 141d21b8256ef96bbd693fd35e154787365e26dc authored by Junio C Hamano on 12 January 2007, 00:48:28 UTC
Merge branch 'ar/merge-recursive'
Tip revision: 141d21b
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