I have the following code
<?php
$output = `git status`;
var_dump($output);
die;
which gives me the right output, so why is it that when I do this, I get nothing?
<?php
$output = `git pull origin master`;
var_dump($output);
die;
For some reason that code is not getting executed, as the repository isn't updated after I make the call..
What is going on?