Revision bdd7379566cf7b1f1c9bfe42e794c8f1821971f7 authored by Junio C Hamano on 29 August 2007, 10:32:12 UTC, committed by Junio C Hamano on 29 August 2007, 10:32:12 UTC
Jari Aalto noticed a handful places in git-daemon documentation
that need to be improved.

 * --inetd makes --pid-file to be ignored, in addition to --user
   and --group

 * receive-pack service was not described at all.  We should, if
   only to warn about the security implications of it.

 * There was no example of per repository configuration.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 99c7ff3
Raw File
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