Staging
v0.5.2
https://github.com/git/git
Revision 9ccb64c8e0791a865ad520bcfff4b02cc7c50097 authored by Junio C Hamano on 05 October 2006, 09:26:12 UTC, committed by Junio C Hamano on 05 October 2006, 09:26:12 UTC
It is silly to keep using git-tar-tree in dist target when the
command gives a big deprecation warning when called.  Instead,
use "git-archive --format=tar" which we recommend to our users.

Update gitweb's snapshot feature to use git-archive for the same
reason.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 6030649
Raw File
Tip revision: 9ccb64c8e0791a865ad520bcfff4b02cc7c50097 authored by Junio C Hamano on 05 October 2006, 09:26:12 UTC
tar-tree deprecation: we eat our own dog food.
Tip revision: 9ccb64c
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