| Commit message (Expand) | Author | Age | Files | Lines |
* | Test for WIN32 instead of __MINGW32_ | Frank Li | 2009-09-18 | 1 | -4/+4 |
* | Fix __stdcall placement and function prototype | Frank Li | 2009-09-18 | 1 | -1/+1 |
* | Avoid declaration after statement | Frank Li | 2009-09-18 | 1 | -0/+2 |
* | start_command: do not clobber cmd->env on Windows code path | Johannes Sixt | 2009-09-11 | 1 | -5/+2 |
* | Merge branch 'js/run-command-updates' | Junio C Hamano | 2009-08-10 | 1 | -46/+59 |
|\ |
|
| * | run-command.c: squelch a "use before assignment" warning | David Soria Parra | 2009-08-04 | 1 | -1/+1 |
| * | run_command: report failure to execute the program, but optionally don't | Johannes Sixt | 2009-07-06 | 1 | -4/+8 |
| * | run_command: encode deadly signal number in the return value | Johannes Sixt | 2009-07-06 | 1 | -1/+8 |
| * | run_command: report system call errors instead of returning error codes | Johannes Sixt | 2009-07-06 | 1 | -40/+49 |
| * | run_command: return exit code as positive value | Johannes Sixt | 2009-07-05 | 1 | -8/+1 |
* | | Convert existing die(..., strerror(errno)) to die_errno() | Thomas Rast | 2009-06-27 | 1 | -2/+2 |
|/ |
|
* | Fix a bunch of pointer declarations (codestyle) | Felipe Contreras | 2009-05-01 | 1 | -1/+1 |
* | Merge branch 'jk/maint-cleanup-after-exec-failure' | Junio C Hamano | 2009-02-03 | 1 | -4/+14 |
|\ |
|
| * | run_command(): handle missing command errors more gracefully | Jeff King | 2009-01-28 | 1 | -4/+14 |
* | | run_hook(): allow more than 9 hook arguments | Stephan Beyer | 2009-01-17 | 1 | -9/+9 |
* | | run_hook(): check the executability of the hook before filling argv | Stephan Beyer | 2009-01-17 | 1 | -3/+3 |
* | | Move run_hook() from builtin-commit.c into run-command.c (libgit) | Stephan Beyer | 2009-01-17 | 1 | -0/+45 |
|/ |
|
* | run-command.c: remove run_command_v_opt_cd() | Nanako Shiraishi | 2008-10-02 | 1 | -8/+0 |
* | Merge branch 'jk/pager-swap' | Junio C Hamano | 2008-08-19 | 1 | -0/+2 |
|\ |
|
| * | run-command: add pre-exec callback | Jeff King | 2008-07-25 | 1 | -0/+2 |
* | | Add output flushing before fork() | Anders Melchiorsen | 2008-08-04 | 1 | -0/+1 |
* | | Flush output in start_async | Anders Melchiorsen | 2008-08-03 | 1 | -0/+3 |
* | | run-command (Windows): Run dashless "git <cmd>" | Steffen Prohaska | 2008-07-28 | 1 | -7/+4 |
|/ |
|
* | Merge branch 'qq/maint' | Junio C Hamano | 2008-07-07 | 1 | -0/+2 |
|\ |
|
| * | run_command(): respect GIT_TRACE | Johannes Schindelin | 2008-07-07 | 1 | -0/+2 |
* | | Windows: Implement a custom spawnve(). | Johannes Sixt | 2008-06-26 | 1 | -1/+1 |
* | | Windows: Implement asynchronous functions as threads. | Johannes Sixt | 2008-06-26 | 1 | -1/+28 |
* | | Windows: Implement start_command(). | Johannes Sixt | 2008-06-23 | 1 | -14/+83 |
|/ |
|
* | run-command: Redirect stderr to a pipe before redirecting stdout to stderr | Christian Couder | 2008-03-05 | 1 | -7/+7 |
* | start_command(), if .in/.out > 0, closes file descriptors, not the callers | Johannes Sixt | 2008-02-23 | 1 | -2/+20 |
* | start_command(), .in/.out/.err = -1: Callers must close the file descriptor | Johannes Sixt | 2008-02-23 | 1 | -6/+0 |
* | run-command: Support sending stderr to /dev/null | Shawn O. Pearce | 2007-11-11 | 1 | -2/+4 |
* | Add infrastructure to run a function asynchronously. | Johannes Sixt | 2007-10-21 | 1 | -8/+43 |
* | Have start_command() create a pipe to read the stderr of the child. | Johannes Sixt | 2007-10-21 | 1 | -2/+24 |
* | Allow environment variables to be unset in the processes started by run_command | Alex Riesen | 2007-05-23 | 1 | -2/+6 |
* | Add ability to specify environment extension to run_command | Alex Riesen | 2007-05-23 | 1 | -1/+15 |
* | Add run_command_v_opt_cd: chdir into a directory before exec | Alex Riesen | 2007-05-23 | 1 | -5/+22 |
* | Teach run-command to redirect stdout to /dev/null | Shawn O. Pearce | 2007-03-12 | 1 | -8/+18 |
* | Teach run-command about stdout redirection | Shawn O. Pearce | 2007-03-12 | 1 | -1/+29 |
* | Simplify closing two fds at once in run-command.c | Shawn O. Pearce | 2007-03-12 | 1 | -6/+9 |
* | Teach run_command how to setup a stdin pipe | Shawn O. Pearce | 2007-03-11 | 1 | -1/+34 |
* | Split run_command into two halves (start/finish) | Shawn O. Pearce | 2007-03-11 | 1 | -7/+19 |
* | Start defining a more sophisticated run_command | Shawn O. Pearce | 2007-03-11 | 1 | -7/+18 |
* | Remove unused run_command variants | Shawn O. Pearce | 2007-03-11 | 1 | -45/+0 |
* | Use /dev/null for update hook stdin. | Shawn O. Pearce | 2006-12-30 | 1 | -3/+3 |
* | Redirect update hook stdout to stderr. | Shawn O. Pearce | 2006-12-30 | 1 | -6/+26 |
* | Remove unnecessary argc parameter from run_command_v. | Shawn O. Pearce | 2006-12-30 | 1 | -4/+4 |
* | simplify inclusion of system header files. | Junio C Hamano | 2006-12-20 | 1 | -1/+0 |
* | use appropriate typedefs | David Rientjes | 2006-08-15 | 1 | -4/+4 |
* | Const tightening. | Junio C Hamano | 2006-03-05 | 1 | -3/+3 |