Git Status未显示

时间:2012-09-26 07:03:12

标签: php git

以下代码创建shell.sh,gitstatus.txt但gitstatus.txt为空。如果我执行注释部分,则创建dir。为什么这些值没有进入gitstatus.txt文件?有任何线索吗?

<?php


$command = "echo '#!/bin/sh'>shell.sh";
exec($command);
$cmnd = "echo 'git status >gitstatus.txt'>>shell.sh";


//$cmnd = "echo 'mkdir rr1'>>shell.sh";

exec($cmnd);

$cmd1 = "sh shell.sh";
exec($cmd1);
?>

0 个答案:

没有答案