Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-07-08 03:42:08 +0400
committerJunio C Hamano <gitster@pobox.com>2008-07-08 03:42:08 +0400
commitbed625540a0e1a4ba4da9962ed53c1d83d9bf509 (patch)
tree2f1696a1ba39e305cda836c037e331ff5b57b1e5 /run-command.c
parente67c9e3952a60dbf380cead5dae1d13fe9703f3c (diff)
parent8852f5d704edc20896a84ca9107978c478a2941b (diff)
Merge branch 'qq/maint'
* qq/maint: run_command(): respect GIT_TRACE Conflicts: run-command.c
Diffstat (limited to 'run-command.c')
-rw-r--r--run-command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/run-command.c b/run-command.c
index 2ce8c2b2f0..6e29fdf9e2 100644
--- a/run-command.c
+++ b/run-command.c
@@ -65,6 +65,8 @@ int start_command(struct child_process *cmd)
cmd->err = fderr[0];
}
+ trace_argv_printf(cmd->argv, "trace: run_command:");
+
#ifndef __MINGW32__
cmd->pid = fork();
if (!cmd->pid) {