summaryrefslogtreecommitdiff
path: root/run-command.c
AgeCommit message (Expand)Author
2010-01-20Merge branch 'js/exec-error-report'Junio C Hamano
2010-01-19Merge branch 'js/windows'Junio C Hamano
2010-01-17Windows: avoid the "dup dance" when spawning a child processJohannes Sixt
2010-01-10start_command: detect execvp failures earlyJohannes Sixt
2010-01-10run-command: move wait_or_whine earlierJohannes Sixt
2010-01-10start_command: report child process setup errors to the parent's stderrJohannes Sixt
2010-01-06run-command: optimize out useless shell callsJeff King
2010-01-02run-command: add "use shell" optionJeff King
2009-09-19Test for WIN32 instead of __MINGW32_Frank Li
2009-09-19Fix __stdcall placement and function prototypeFrank Li
2009-09-19Avoid declaration after statementFrank Li
2009-09-11start_command: do not clobber cmd->env on Windows code pathJohannes Sixt
2009-08-11Merge branch 'js/run-command-updates'Junio C Hamano
2009-08-04run-command.c: squelch a "use before assignment" warningDavid Soria Parra
2009-07-06run_command: report failure to execute the program, but optionally don'tJohannes Sixt
2009-07-06run_command: encode deadly signal number in the return valueJohannes Sixt
2009-07-06run_command: report system call errors instead of returning error codesJohannes Sixt
2009-07-05run_command: return exit code as positive valueJohannes Sixt
2009-06-27Convert existing die(..., strerror(errno)) to die_errno()Thomas Rast
2009-05-01Fix a bunch of pointer declarations (codestyle)Felipe Contreras
2009-02-03Merge branch 'jk/maint-cleanup-after-exec-failure'Junio C Hamano
2009-01-28run_command(): handle missing command errors more gracefullyJeff King
2009-01-18run_hook(): allow more than 9 hook argumentsStephan Beyer
2009-01-18run_hook(): check the executability of the hook before filling argvStephan Beyer
2009-01-18Move run_hook() from builtin-commit.c into run-command.c (libgit)Stephan Beyer
2008-10-03run-command.c: remove run_command_v_opt_cd()Nanako Shiraishi
2008-08-20Merge branch 'jk/pager-swap'Junio C Hamano
2008-08-05Add output flushing before fork()Anders Melchiorsen
2008-08-04Flush output in start_asyncAnders Melchiorsen
2008-07-29run-command (Windows): Run dashless "git <cmd>"Steffen Prohaska
2008-07-26run-command: add pre-exec callbackJeff King
2008-07-07Merge branch 'qq/maint'Junio C Hamano
2008-07-07run_command(): respect GIT_TRACEJohannes Schindelin
2008-06-26Windows: Implement a custom spawnve().Johannes Sixt
2008-06-26Windows: Implement asynchronous functions as threads.Johannes Sixt
2008-06-23Windows: Implement start_command().Johannes Sixt
2008-03-05run-command: Redirect stderr to a pipe before redirecting stdout to stderrChristian Couder
2008-02-23start_command(), if .in/.out > 0, closes file descriptors, not the callersJohannes Sixt
2008-02-23start_command(), .in/.out/.err = -1: Callers must close the file descriptorJohannes Sixt
2007-11-12run-command: Support sending stderr to /dev/nullShawn O. Pearce
2007-10-21Add infrastructure to run a function asynchronously.Johannes Sixt
2007-10-21Have start_command() create a pipe to read the stderr of the child.Johannes Sixt
2007-05-24Allow environment variables to be unset in the processes started by run_commandAlex Riesen
2007-05-24Add ability to specify environment extension to run_commandAlex Riesen
2007-05-24Add run_command_v_opt_cd: chdir into a directory before execAlex Riesen
2007-03-13Teach run-command to redirect stdout to /dev/nullShawn O. Pearce
2007-03-13Teach run-command about stdout redirectionShawn O. Pearce
2007-03-12Simplify closing two fds at once in run-command.cShawn O. Pearce
2007-03-12Teach run_command how to setup a stdin pipeShawn O. Pearce
2007-03-12Split run_command into two halves (start/finish)Shawn O. Pearce