summaryrefslogtreecommitdiffstats
path: root/exec_cmd.c
AgeCommit message (Expand)AuthorLines
2008-10-12Replace calls to strbuf_init(&foo, 0) with STRBUF_INIT initializerBrandon Casey-3/+1
2008-07-28Refactor, adding prepare_git_cmd(const char **argv)Steffen Prohaska-1/+6
2008-07-25Allow add_path() to add non-existent directories to the pathJohannes Sixt-1/+1
2008-07-25Allow the built-in exec path to be relative to the command invocation pathJohannes Sixt-36/+2
2008-07-25Fix relative built-in paths to be relative to the command invocationJohannes Sixt-2/+2
2008-07-25Record the command invocation path earlyJohannes Sixt-2/+8
2008-07-13Move code interpreting path relative to exec-dir to new function system_path()Steffen Prohaska-0/+10
2008-07-02Merge branch 'j6t/mingw'Junio C Hamano-4/+37
2008-06-26Windows: Compute the fallback for exec_path from the program invocation.Johannes Sixt-0/+29
2008-06-26Turn builtin_exec_path into a function.Johannes Sixt-3/+7
2008-06-23Prepare execv_git_cmd() for removal of builtins from the filesystemJunio C Hamano-19/+12
2008-06-22Windows: Use the Windows style PATH separator ';'.Johannes Sixt-1/+1
2007-12-03Trace and quote with argv: get rid of unneeded count argument.Christian Couder-1/+1
2007-10-29use only the $PATH for exec'ing git commandsScott R Parish-69/+53
2007-10-29"current_exec_path" is a misleading name, use "argv_exec_path"Scott R Parish-6/+6
2007-02-20Mechanical conversion to use prefixcmp()Junio C Hamano-1/+1
2006-12-19Use preprocessor constants for environment variable names.Junio C Hamano-2/+2
2006-08-31Trace into open fd and refactor tracing code.Christian Couder-16/+2
2006-08-15remove unnecessary initializationsDavid Rientjes-1/+1
2006-07-09GIT_TRACE: fix a mixed declarations and code warningTimo Hirvonen-1/+1
2006-07-09GIT_TRACE: show which built-in/external commands are executedMatthias Lederhofer-0/+19
2006-05-30git_exec_path, execv_git_cmd: ignore empty environment variablesDmitry V. Levin-2/+2
2006-05-30execv_git_cmd: Fix stack buffer overflow.Dmitry V. Levin-9/+23
2006-04-17cleanups: remove unused variable from exec_cmd.cSerge E. Hallyn-3/+1
2006-03-09Use #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))Junio C Hamano-1/+1
2006-03-05Const tightening.Junio C Hamano-6/+7
2006-02-26Use setenv(), fix warningsTimo Hirvonen-1/+1
2006-01-13Exec git programs without using PATH.Michal Ostrowski-0/+117