https://github.com/git/git
Revision f5961572a02ef08324f297fe93b704ff2137e5a6 authored by Junio C Hamano on 02 October 2006, 07:47:32 UTC, committed by Junio C Hamano on 02 October 2006, 07:47:32 UTC
* maint:
  git-push: .git/remotes/ file does not require SP after colon
  git-mv: invalidate the removed path properly in cache-tree
2 parent s 7c2738c + 6fe5b7f
Raw File
Tip revision: f5961572a02ef08324f297fe93b704ff2137e5a6 authored by Junio C Hamano on 02 October 2006, 07:47:32 UTC
Merge branch 'maint'
Tip revision: f596157
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